Work on incomes & expanse
This commit is contained in:
@@ -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');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user