mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
ALPHA 3.0.5e
This commit is contained in:
@@ -16,7 +16,7 @@ Auth::routes();
|
||||
|
||||
/* Index Route */
|
||||
Route::get('/', function () {
|
||||
return view('public');
|
||||
return view('default');
|
||||
});
|
||||
|
||||
Route::middleware(['auth','admin'])->group(function () {
|
||||
@@ -75,6 +75,12 @@ Route::middleware(['auth','admin'])->group(function () {
|
||||
|
||||
/** Notification */
|
||||
Route::post('/admin/notication/mark/{id}','UserController@notificationmark');
|
||||
|
||||
/** Profil */
|
||||
Route::get('/admin/profil/avatar' , 'UserController@UserAvatar');
|
||||
Route::get('/admin/profil/edit/avatar/{id}' , 'UserController@editUserAvatar');
|
||||
Route::get('/admin/profil/{id?}' , 'UserController@showUserProfil');
|
||||
|
||||
});
|
||||
|
||||
Route::middleware(['auth','staff'])->group(function () {
|
||||
|
||||
Reference in New Issue
Block a user