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

18 lines
366 B
PHP
Raw Normal View History

2025-12-07 03:49:26 +00:00
<?php
namespace App\Modules\Movies\Http\Controllers\Pages;
use App\Http\Controllers\Controller;
use Inertia\Inertia;
use Inertia\Response;
class StudiosShowPageController extends Controller
{
public function __invoke(string $studio): Response
{
return Inertia::render('studios/Show', [
'entityId' => (int) $studio,
]);
}
}