Work on incomes & expanse

This commit is contained in:
TiclemFR
2024-01-27 10:32:55 +01:00
parent 336f2bae93
commit ce5b9ac0c8
48 changed files with 27832 additions and 15 deletions

View File

@@ -1,5 +1,6 @@
<?php
use App\Http\Controllers\TransactionsController;
use App\Http\Controllers\UserController;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
@@ -25,5 +26,8 @@ Route::middleware(['auth'])->group(function(){
Route::get('/', function () {
return view('welcome');
})->name('home');
Route::get('/profile', function () {
return Inertia::render('User/profile');
})->name('profile');
Route::get('/transactions', [TransactionsController::class, 'index'])->name('transactions');
});