PLA now starts at the root of the HTML request, favicon setup

This commit is contained in:
Deon George
2023-01-27 16:29:02 +11:00
parent d0242ce3d8
commit 58e171aea1
7 changed files with 8 additions and 6 deletions

View File

@@ -26,12 +26,11 @@ Route::group(['prefix' => LaravelLocalization::setLocale()], function() {
'register' => FALSE,
]);
Route::get('home',[HomeController::class,'home']);
Route::get('/',[HomeController::class,'home']);
Route::get('info',[HomeController::class,'info']);
Route::post('dn',[HomeController::class,'dn_frame']);
});
Route::redirect('/','home');
Route::get('logout',[LoginController::class,'logout']);
Route::group(['prefix'=>'user'],function() {