Files
ntspi-app/app/Http/Resources/ClientLibraryPostListResource.php
T
2024-09-19 16:06:49 +05:00

33 lines
648 B
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class ClientLibraryPostListResource 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,
'content' => $this->content,
'preview_text' => $this->preview_text,
'category' => $this->category,
'created_at' => $this->created_at->diffforhumans(),
];
}
}