54 lines
3.1 KiB
PHP
54 lines
3.1 KiB
PHP
<div>
|
|
<div class="flex h-16 shrink-0 items-center border-b border-gray-200">
|
|
<a href="{{ route('home') }}" wire:navigate>
|
|
<img class="h-12 w-auto" src="https://benjamyn.love/PriceyBot.png" alt="">
|
|
</a>
|
|
</div>
|
|
|
|
<nav class="flex flex-1 flex-col">
|
|
<ul role="list" class="flex flex-1 flex-col gap-y-7">
|
|
<li class="border-b border-gray-200">
|
|
<div class="text-xs font-semibold leading-6 text-gray-400">User Menu</div>
|
|
<ul role="list" class="-mx-2 mt-2 space-y-1">
|
|
<ul role="list" class="-mx-2 space-y-1">
|
|
<li>
|
|
{{-- TODO: fill with SVG icons to make it pretty --}}
|
|
{{-- <svg class="h-6 w-6 shrink-0 text-indigo-600" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">--}}
|
|
{{-- <path stroke-linecap="round" stroke-linejoin="round" d="M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25" />--}}
|
|
{{-- </svg>--}}
|
|
<x-sidebar-nav :href="route('dashboard')" route="dashboard">First Page</x-sidebar-nav>
|
|
</li>
|
|
<li>
|
|
{{-- TODO: fill with SVG icons to make it pretty --}}
|
|
{{-- <x-sidebar-nav :href="route('u-2')" route="u-2">Second Page</x-sidebar-nav>--}}
|
|
</li>
|
|
<li>
|
|
{{-- TODO: fill with SVG icons to make it pretty --}}
|
|
{{-- <x-sidebar-nav :href="route('u-3')" route="u-3">Third Page</x-sidebar-nav>--}}
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
</li>
|
|
@if(auth()->user()->is_admin)
|
|
<li>
|
|
<div class="text-xs font-semibold leading-6 text-gray-400">Admin Menu</div>
|
|
<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>
|
|
</li>
|
|
<li>
|
|
{{-- TODO: fill with SVG icons to make it pretty --}}
|
|
{{-- <x-sidebar-nav :href="route('a-2')" route="a-2">Second Page</x-sidebar-nav>--}}
|
|
</li>
|
|
<li>
|
|
{{-- TODO: fill with SVG icons to make it pretty --}}
|
|
{{-- <x-sidebar-nav :href="route('a-3')" route="a-3">Third Page</x-sidebar-nav>--}}
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
@endif
|
|
</ul>
|
|
</nav>
|
|
</div>
|