23 lines
410 B
PHP
Executable File
23 lines
410 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Containers\Schedule\UI\WEB\Transformers;
|
|
|
|
|
|
use App\Ship\Resources\JsonResource;
|
|
|
|
class ScheduleGroupResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray($request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'file' => $this->file,
|
|
];
|
|
}
|
|
}
|