2025-08-02 15:20:09 +02:00
|
|
|
<?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,
|
2025-08-12 01:01:38 +02:00
|
|
|
'provider' => $this->provider,
|
|
|
|
|
'language_id' => $this->language_id,
|
2025-08-02 15:20:09 +02:00
|
|
|
'is_active' => $this->is_active,
|
|
|
|
|
'description' => $this->description,
|
|
|
|
|
'created_at' => $this->created_at->toISOString(),
|
|
|
|
|
'updated_at' => $this->updated_at->toISOString(),
|
2025-08-06 20:01:28 +02:00
|
|
|
'articles_count' => $this->when(
|
|
|
|
|
$request->routeIs('api.feeds.*') && isset($this->articles_count),
|
|
|
|
|
$this->articles_count
|
|
|
|
|
),
|
2025-08-02 15:20:09 +02:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|