26 lines
679 B
PHP
26 lines
679 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Resources;
|
||
|
|
|
||
|
|
use Illuminate\Http\Request;
|
||
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||
|
|
|
||
|
|
class ArticlePublicationResource extends JsonResource
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Transform the resource into an array.
|
||
|
|
*
|
||
|
|
* @return array<string, mixed>
|
||
|
|
*/
|
||
|
|
public function toArray(Request $request): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'id' => $this->id,
|
||
|
|
'article_id' => $this->article_id,
|
||
|
|
'status' => $this->status,
|
||
|
|
'published_at' => $this->published_at?->toISOString(),
|
||
|
|
'created_at' => $this->created_at->toISOString(),
|
||
|
|
'updated_at' => $this->updated_at->toISOString(),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|