31 lines
No EOL
868 B
PHP
31 lines
No EOL
868 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class FeedResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'url' => $this->url,
|
|
'type' => $this->type,
|
|
'is_active' => $this->is_active,
|
|
'description' => $this->description,
|
|
'created_at' => $this->created_at->toISOString(),
|
|
'updated_at' => $this->updated_at->toISOString(),
|
|
'articles_count' => $this->when($request->routeIs('api.feeds.*'), function () {
|
|
return $this->articles()->count();
|
|
}),
|
|
];
|
|
}
|
|
} |