Files
budget_analyser/routes/web.php
TiclemFR 468c2cd0e6 🔧
2024-01-25 09:06:03 +01:00

23 lines
594 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Route::get('/login', function () {
return Inertia::render('Auth/login');
});