mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
17 lines
299 B
PHP
17 lines
299 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\V4;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class InsightsResource extends JsonResource
|
|
{
|
|
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'timestamp' => $this['timestamp'],
|
|
'url' => $this['url'],
|
|
];
|
|
}
|
|
} |