Page Stubs and Click-Through Flow
This commit is contained in:
19
app/Http/Controllers/LandingController.php
Normal file
19
app/Http/Controllers/LandingController.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user