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