mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
25 lines
525 B
PHP
25 lines
525 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Resources\AlbumResource;
|
|
use App\Models\Album;
|
|
use App\Repositories\AlbumRepository;
|
|
|
|
class AlbumController extends Controller
|
|
{
|
|
public function __construct(private readonly AlbumRepository $repository)
|
|
{
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
return AlbumResource::collection($this->repository->paginate());
|
|
}
|
|
|
|
public function show(Album $album)
|
|
{
|
|
return AlbumResource::make($album);
|
|
}
|
|
}
|