35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
/**
|
|
* @property int $id
|
|
*/
|
|
class ArticleResource extends JsonResource
|
|
{
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'feed_id' => $this->feed_id,
|
|
'url' => $this->url,
|
|
'title' => $this->title,
|
|
'description' => $this->description,
|
|
'is_valid' => $this->is_valid,
|
|
'is_duplicate' => $this->is_duplicate,
|
|
'approval_status' => $this->approval_status,
|
|
'approved_at' => $this->approved_at?->toISOString(),
|
|
'approved_by' => $this->approved_by,
|
|
'fetched_at' => $this->fetched_at?->toISOString(),
|
|
'validated_at' => $this->validated_at?->toISOString(),
|
|
'is_published' => $this->relationLoaded('articlePublication') && $this->articlePublication !== null,
|
|
'created_at' => $this->created_at->toISOString(),
|
|
'updated_at' => $this->updated_at->toISOString(),
|
|
'feed' => new FeedResource($this->whenLoaded('feed')),
|
|
'article_publication' => new ArticlePublicationResource($this->whenLoaded('articlePublication')),
|
|
];
|
|
}
|
|
}
|