1234567891011121314151617 |
- <?php
- use Illuminate\Support\Facades\Route;
- use Inertia\Inertia;
- Route::get('/', function () {
- return Inertia::render('WelcomePage');
- })->name('home');
- Route::middleware(['auth', 'verified'])->group(function () {
- Route::get('dashboard', function () {
- return Inertia::render('DashboardPage');
- })->name('dashboard');
- });
- require __DIR__ . '/settings.php';
- require __DIR__ . '/auth.php';
|