mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
15 lines
396 B
PHP
15 lines
396 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Artist;
|
|
use App\Services\MediaInformationService;
|
|
|
|
class FetchArtistInformationController extends Controller
|
|
{
|
|
public function __invoke(Artist $artist, MediaInformationService $informationService)
|
|
{
|
|
return response()->json($informationService->getArtistInformation($artist));
|
|
}
|
|
}
|