31 lines
805 B
PHP
31 lines
805 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class ClientPostListResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'title' => $this->title,
|
|
'slug' => $this->slug,
|
|
'preview_text' => $this->preview_text,
|
|
'content' => $this->content,
|
|
'category' => $this->category,
|
|
'authors' => $this->authors,
|
|
'preview' => $this->preview,
|
|
'reading_time' => $this->reading_time,
|
|
'created_post' => $this->created_at->diffforhumans(),
|
|
];
|
|
}
|
|
}
|