. */ namespace App\Http\Controllers\Api\Web; use App\Commands\CreateShowSongCommand; use App\Commands\DeleteShowSongCommand; use App\Commands\RenameShowSongCommand; use App\Http\Controllers\ApiControllerBase; use App\Models\ShowSong; use Illuminate\Http\Request; use Illuminate\Support\Facades\Response; class ShowSongsController extends ApiControllerBase { public function getIndex() { $this->authorize('access-admin-area'); $songs = ShowSong::with(['trackCountRelation' => function ($query) { $query->withTrashed(); }]) ->orderBy('title') ->select('id', 'title', 'slug') ->get(); return response()->json([ 'showsongs' => $songs->toArray(), ], 200); } public function postCreate(Request $request) { $command = new CreateShowSongCommand($request->get('title')); return $this->execute($command); } public function putRename(Request $request, $songId) { $command = new RenameShowSongCommand($songId, $request->get('title')); return $this->execute($command); } public function deleteSong(Request $request, $songId) { $command = new DeleteShowSongCommand($songId, $request->get('destination_song_id')); return $this->execute($command); } }