GOOD SHELL MAS BOY
Server: Apache/2.4.52 (Ubuntu)
System: Linux vmi1836763.contaboserver.net 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64
User: www-data (33)
PHP: 8.4.10
Disabled: NONE
Upload Files
File: /var/www/html/resources/views/components/app_nav.blade.php
<div class="dashboard_navigationbar d-block d-lg-none">
    <div class="dropdown">
        <button onclick="myFunction()" class="dropbtn"><i class="fa fa-bars pr10"></i>Open Menu</button>
        @php
        $user = session()->get('user');
        @endphp
        <ul id="myDropdown" class="dropdown-content">
            <li><a href="{{ route('welcome') }}"><i class="flaticon-home mr10"></i>Home</a></li>
            <li class="active"><a wire:navigate href="{{ route('dashboard.profile') }}"><i class="flaticon-home mr10"></i>Dashboard</a></li>
            @if($user && $user['role'] == 'seller')
            <li><a href="{{ route('dashboard.chat') }}"><i class="flaticon-like mr10"></i>Chat</a></li>
            <li><a href="{{ route('dashboard.task') }}"><i class="flaticon-chat mr10"></i>Tasks</a></li>
            <li><a href="{{ route('dashboard.payment.history') }}"><i class="flaticon-review-1 mr10"></i>Transaction History</a></li>
            <li><a href="{{ route('dashboard.review') }}"><i class="flaticon-receipt mr10"></i>Manage Reviews</a></li>
            <li><a href="{{ route('dashboard.gigs') }}"><i class="flaticon-dollar mr10"></i>Manage Services</a></li>
            <li><a href="{{ route('dashboard.faqs') }}"><i class="flaticon-web mr10"></i>Manage FAQ</a></li>
            <li>
                <p class="fz15 fw400 ff-heading mt30 pl30">Organize and Manage</p>
            </li>
            <li><a href="{{ route('dashboard.gigs') }}"><i class="flaticon-presentation mr10"></i>Manage Certificate</a></li>
            <li><a href="{{ route('dashboard.certificates') }}"><i class="flaticon-content mr10"></i>Manage Shop</a></li>
            <li><a href="{{ route('dashboard.faq') }}"><i class="flaticon-content mr10"></i>Promotions</a></li>
            <li><a href="{{ route('dashboard.shop') }}"><i class="flaticon-briefcase mr10"></i>Support</a></li>
            <li>
                <p class="fz15 fw400 ff-heading mt30 pl30">Account</p>
            </li>
            <li><a href="{{ route('dashboard.shop') }}"><i class="flaticon-photo mr10"></i>Settings</a></li>
            @elseif($user && $user['role'] == 'buyer')
            <li><a href="{{ route('dashboard.favorite') }}"><i class="flaticon-briefcase mr10"></i>Favorites</a></li>
            <li><a href="{{ route('dashboard.payment.history') }}"><i class="flaticon-like mr10"></i>Transaction History</a></li>
            <li><a href="{{ route('dashboard.chat') }}"><i class="flaticon-chat mr10"></i>Chat</a></li>
            <li><a href="{{ route('dashboard.review') }}"><i class="flaticon-review-1 mr10"></i>Reviews</a></li>
            <li><a href="{{ route('dashboard.task') }}"><i class="flaticon-review-1 mr10"></i>Manage Tasks</a></li>

            <li><a href="{{ route('dashboard.support') }}"><i class="flaticon-briefcase mr10"></i>Support</a></li>
            <li><a wire:navigate href="{{ route('dashboard.profile') }}"><i class="flaticon-photo mr10"></i>Settings</a></li>
            @endif
            <a href="{{ route('logout') }}" class="items-center text-danger">
            <i class="flaticon-logout mr10"></i>Logout
        </a>
        </ul>
    </div>
</div>