PIMS/app/Modules/Movies/Http/Controllers/Pages/DirectorsShowPageController.php

18 lines
374 B
PHP

<?php
namespace App\Modules\Movies\Http\Controllers\Pages;
use App\Http\Controllers\Controller;
use Inertia\Inertia;
use Inertia\Response;
class DirectorsShowPageController extends Controller
{
public function __invoke(string $director): Response
{
return Inertia::render('directors/Show', [
'entityId' => (int) $director,
]);
}
}