employee module
This commit is contained in:
@ -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');
|
||||
|
Reference in New Issue
Block a user