mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
25 lines
549 B
PHP
25 lines
549 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Values\Genre;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class GenreResource extends JsonResource
|
|
{
|
|
public function __construct(private Genre $genre)
|
|
{
|
|
parent::__construct($genre);
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function toArray($request): array
|
|
{
|
|
return [
|
|
'type' => 'genres',
|
|
'name' => $this->genre->name,
|
|
'song_count' => $this->genre->songCount,
|
|
'length' => $this->genre->length,
|
|
];
|
|
}
|
|
}
|