18 lines
362 B
PHP
18 lines
362 B
PHP
<?php
|
|
|
|
namespace App\Modules\Movies\Http\Controllers\Pages;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class GenresShowPageController extends Controller
|
|
{
|
|
public function __invoke(string $genre): Response
|
|
{
|
|
return Inertia::render('genres/Show', [
|
|
'entityId' => (int) $genre,
|
|
]);
|
|
}
|
|
}
|