feat/admin-send-quote #15
@ -35,7 +35,7 @@
|
||||
<ul role="list" class="-mx-2 mt-2 space-y-1">
|
||||
<li>
|
||||
{{-- TODO: fill with SVG icons to make it pretty --}}
|
||||
<x-sidebar-nav :href="route('send')" route="send">Send Quote</x-sidebar-nav>
|
||||
<x-sidebar-nav :href="route('admin.send')" route="send">Send Quote</x-sidebar-nav>
|
||||
|
benjamyn marked this conversation as resolved
Outdated
|
||||
</li>
|
||||
<li>
|
||||
{{-- TODO: fill with SVG icons to make it pretty --}}
|
||||
|
||||
@ -27,7 +27,7 @@ Route::view('profile', 'profile')
|
||||
|
||||
Route::view('send', 'admin.send')
|
||||
|
llama
commented
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
llama
commented
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');
|
||||
->name('admin.send');
|
||||
|
||||
Route::middleware('guest')->group(function () {
|
||||
Volt::route('login', 'pages.auth.login')
|
||||
|
||||
Reference in New Issue
Block a user
I think this also needs to be /admin/send