feat/admin-send-quote #15
@ -25,7 +25,7 @@ Route::view('profile', 'profile')
|
||||
->middleware(['auth'])
|
||||
->name('profile');
|
||||
|
||||
Route::view('send', 'send')
|
||||
Route::view('send', 'admin.send')
|
||||
|
|
||||
->middleware(['auth'])
|
||||
->name('send');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user
can we prefix send with admin/
once we start getting more admin tools, it'll get mess but the rest looks good to me :D
Route::view('admin/send', 'admin.send')
will be better I think