2022-06-10 10:47:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\V6\API;
|
|
|
|
|
2022-07-29 06:47:10 +00:00
|
|
|
use App\Http\Controllers\Controller;
|
2022-06-10 10:47:46 +00:00
|
|
|
use App\Http\Resources\ArtistResource;
|
|
|
|
use App\Models\Artist;
|
|
|
|
use App\Repositories\ArtistRepository;
|
|
|
|
|
|
|
|
class ArtistController extends Controller
|
|
|
|
{
|
2022-10-11 15:28:43 +00:00
|
|
|
public function __construct(private ArtistRepository $repository)
|
2022-07-27 15:32:36 +00:00
|
|
|
{
|
2022-06-10 10:47:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function index()
|
|
|
|
{
|
2022-10-11 15:28:43 +00:00
|
|
|
return ArtistResource::collection($this->repository->paginate());
|
2022-06-10 10:47:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function show(Artist $artist)
|
|
|
|
{
|
2022-10-11 15:28:43 +00:00
|
|
|
return ArtistResource::make($this->repository->getOne($artist->id));
|
2022-06-10 10:47:46 +00:00
|
|
|
}
|
|
|
|
}
|