20 lines
305 B
PHP
20 lines
305 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
final class LandingController extends Controller
|
|
{
|
|
/**
|
|
* Display the landing page.
|
|
*/
|
|
public function index(): Response
|
|
{
|
|
return Inertia::render('Landing');
|
|
}
|
|
}
|