feat/admin-send-quote #15

Merged
llama merged 5 commits from feat/admin-send-quote into master 2023-10-09 05:09:57 -04:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit c7a3fadb96 - Show all commits

View File

@ -25,7 +25,7 @@ Route::view('profile', 'profile')
->middleware(['auth'])
->name('profile');
Route::view('send', 'send')
Route::view('send', 'admin.send')
Outdated
Review

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

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
Review

Route::view('admin/send', 'admin.send')

will be better I think

Route::view('admin/send', 'admin.send') will be better I think
->middleware(['auth'])
->name('send');