jikan-rest/app/Http/Resources/V4/InsightsResource.php
2021-09-11 03:39:49 +05:00

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'],
];
}
}