mirror of
https://github.com/koel/koel
synced 2024-12-14 06:32:28 +00:00
13 lines
280 B
PHP
13 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\MediaInformation;
|
|
|
|
use App\Models\Artist;
|
|
|
|
class ArtistController extends Controller
|
|
{
|
|
public function show(Artist $artist)
|
|
{
|
|
return response()->json($this->mediaInformationService->getArtistInformation($artist));
|
|
}
|
|
}
|