mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
20 lines
470 B
PHP
20 lines
470 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Resources\AlbumResource;
|
|
use App\Models\Artist;
|
|
use App\Repositories\AlbumRepository;
|
|
|
|
class ArtistAlbumController extends Controller
|
|
{
|
|
public function __construct(private readonly AlbumRepository $albumRepository)
|
|
{
|
|
}
|
|
|
|
public function index(Artist $artist)
|
|
{
|
|
return AlbumResource::collection($this->albumRepository->getByArtist($artist));
|
|
}
|
|
}
|