mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
30 lines
840 B
PHP
30 lines
840 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Models\Playlist;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class PlaylistResource extends JsonResource
|
|
{
|
|
public function __construct(private Playlist $playlist)
|
|
{
|
|
parent::__construct($playlist);
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function toArray($request): array
|
|
{
|
|
return [
|
|
'type' => 'playlists',
|
|
'id' => $this->playlist->id,
|
|
'name' => $this->playlist->name,
|
|
'folder_id' => $this->playlist->folder_id,
|
|
'user_id' => $this->playlist->user_id,
|
|
'is_smart' => $this->playlist->is_smart,
|
|
'rules' => $this->playlist->rules,
|
|
'own_songs_only' => $this->playlist->own_songs_only,
|
|
'created_at' => $this->playlist->created_at,
|
|
];
|
|
}
|
|
}
|