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

18 lines
362 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 ActorsShowPageController extends Controller
{
public function __invoke(string $actor): Response
{
return Inertia::render('actors/Show', [
'entityId' => (int) $actor,
]);
}
}