Files
budget_analyser/routes/web.php
TiclemFR 076ec32c3b 🔧
2023-12-29 17:47:40 +01:00

23 lines
614 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', ["user" => "test"]);
});