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

28 lines
740 B
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class DepartmentResource 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,
'faculty' => $this->faculty,
'slug' => $this->slug,
'workers' => ClientPersonDepartmentPreviewResource::collection($this->workers),
'teachers' => ClientPersonDepartmentTeachPreviewResource::collection($this->teachers),
];
}
}