!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/Modules/Plan/Resources/views/   drwxr-xr-x
Free 29.25 GB of 117.98 GB (24.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     index.blade.php (4.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('admin.layouts.app')
@section('title')
    {{ __('plan_list') }}
@endsection
@section('content')
    <div class="card p-2">
        <div class="card-header">
            <h3 class="card-title" style="line-height: 36px;">{{ __('plan_list') }}</h3>
            @if (userCan('plan.create'))
                <a href="{{ route('module.plan.create') }}"
                    class="btn bg-primary float-right d-flex align-items-center justify-content-center">
                    <i class="fas fa-plus"></i>&nbsp; {{ __('create') }}
                </a>
            @endif
        </div>
        <div class="row">
            <div class="col-12 col-sm-12 col-md-2 mt-4">
                <ul class="nav nav-pills flex-column">
                    <li class="nav-item border rounded mb-1">
                        <a class="nav-link active" data-toggle="tab" href="#all">
                            {{ __('all') }}
                        </a>
                    </li>
                    <li class="nav-item border rounded mb-1">
                        <a class="nav-link" data-toggle="tab" href="#one_time">
                            {{ __('one_time') }}
                        </a>
                    </li>
                    <li class="nav-item border rounded mb-1">
                        <a class="nav-link" data-toggle="tab" href="#recurring">
                            {{ __('recurring') }}
                        </a>
                    </li>
                </ul>
            </div>
            <div class="col-12 col-sm-12 col-md-10 mt-4">
                <div class="tab-content no-padding">
                    <div class="tab-pane show active" id="all">
                        <div class="row">
                            @forelse ($plans as $plan)
                                @include('plan::single-plan')
                            @empty
                                <div class="col-md-12">
                                    <div class="card text-center">
                                        <div class="card-body">
                                            <x-not-found route="module.plan.create" message="{{ __('no_data_found') }}" />
                                        </div>
                                    </div>
                                </div>
                            @endforelse
                        </div>
                    </div>
                    <div class="tab-pane" id="one_time">
                        <div class="row">
                            @forelse ($one_time_plans as $plan)
                                @include('plan::single-plan')
                            @empty
                                <div class="col-md-12">
                                    <div class="card text-center">
                                        <div class="card-body">
                                            <x-not-found route="module.plan.create"
                                                message="{{ __('no_data_found') }}" />
                                        </div>
                                    </div>
                                </div>
                            @endforelse
                        </div>
                    </div>
                    <div class="tab-pane" id="recurring">
                        <div class="row">
                            @forelse ($recurring_plans as $plan)
                                @include('plan::single-plan')
                            @empty
                                <div class="col-md-12">
                                    <div class="card text-center">
                                        <div class="card-body">
                                            <x-not-found route="module.plan.create"
                                                message="{{ __('no_data_found') }}" />
                                        </div>
                                    </div>
                                </div>
                            @endforelse
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
@endsection

@section('style')
    <style>
        .icon {
            height: 25px;
            width: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #007bff;
            border-radius: 50%;
            color: white;
        }
    </style>
@endsection

@section('script')
    <script>
        function MonthlyPrice(plan) {

            if ($('#customSwitch' + plan.id).is(":checked")) {
                $('#price' + plan.id).html("$" + plan.monthly_price);
                $('#monthoryear' + plan.id).html("{{ __('/monthly') }}");
            } else {
                $('#price' + plan.id).html("$" + plan.yearly_price);
                $('#monthoryear' + plan.id).html("{{ __('/yearly') }}");
            }
        }
    </script>
@endsection

:: 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.0043 ]--