mirror of
https://github.com/koel/koel
synced 2024-11-15 00:47:18 +00:00
34 lines
773 B
PHP
34 lines
773 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Models\PlaylistFolder;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class PlaylistFolderResource extends JsonResource
|
|
{
|
|
public const JSON_STRUCTURE = [
|
|
'type',
|
|
'id',
|
|
'name',
|
|
'user_id',
|
|
'created_at',
|
|
];
|
|
|
|
public function __construct(private readonly PlaylistFolder $folder)
|
|
{
|
|
parent::__construct($folder);
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function toArray($request): array
|
|
{
|
|
return [
|
|
'type' => 'playlist-folders',
|
|
'id' => $this->folder->id,
|
|
'name' => $this->folder->name,
|
|
'user_id' => $this->folder->user_id,
|
|
'created_at' => $this->folder->created_at,
|
|
];
|
|
}
|
|
}
|