employee module

This commit is contained in:
2024-04-11 16:37:12 +05:45
parent b5c603ceec
commit 91e7943546
9 changed files with 417 additions and 14 deletions

View File

@ -20,6 +20,10 @@ Route::get('/', function () {
return view('welcome');
});
Route::get('/invoice', function () {
return view('invoice');
});
Auth::routes();
Route::get('/dashboard', [App\Http\Controllers\HomeController::class, 'index'])->name('home');