web.php 409 B

1234567891011121314151617
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. use Inertia\Inertia;
  4. Route::get('/', function () {
  5. return Inertia::render('WelcomePage');
  6. })->name('home');
  7. Route::middleware(['auth', 'verified'])->group(function () {
  8. Route::get('dashboard', function () {
  9. return Inertia::render('DashboardPage');
  10. })->name('dashboard');
  11. });
  12. require __DIR__ . '/settings.php';
  13. require __DIR__ . '/auth.php';