!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

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


Viewing file:     customer_step_detail.blade.php (3.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.admin')

@section('title')
    Step Details
@endsection

@section('extra-css')
    <link rel="stylesheet" href="{{asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
    <link rel="stylesheet" href="{{asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">

    <style>
        .w-100 {
            width: 100%;
        }

        .single-step-row{
            background: #ededed;
            padding: 8px;
            border-radius: 5px;
        }
    </style>
@endsection

@section('content')
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-12">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">@lang('Step Details')</h2>

                        @if($current_plan && isset($current_plan->workout_plan) && $current_plan->workout_plan=='yes')
                            <a class="btn btn-success btn-sm float-right" href="{{route('admin.customer.assign.workout.plan', [$current_plan->customer_id])}}">Assign Workout Plan</a>
                        @endif

                        @if($current_plan && isset($current_plan->meal_plan) && $current_plan->meal_plan=='yes')
                            <a class="btn btn-success btn-sm float-right mr-2" href="{{route('admin.customer.assign.meal.plan', [$current_plan->customer_id])}}">Assign Meal Plan</a>
                        @endif

                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <div class="row">
                            <div class="col-md-6 mb-3">
                                <h6 class="font-weight-bold">{{trans('Title')}}</h6>
                            </div>
                            <div class="col-md-6 mb-3">
                                <h6 class="font-weight-bold">{{trans('Value')}}</h6>
                            </div>
                        </div>
                        @if($customer_step_details->isNotEmpty())
                            @foreach($customer_step_details as $detail)
                                <div class="row mt-2 single-step-row">
                                    <div class="col-md-6">
                                        {{$detail->title}}
                                    </div>
                                    <div class="col-md-6">
                                        {{$detail->value}}
                                    </div>
                                </div>
                            @endforeach
                        @else
                            <div class="row">
                                <div class="col-md-12 text-center mt-3">
                                    <p class="text-danger">
                                        {{trans('No Data Available')}}
                                    </p>
                                </div>
                            </div>
                        @endif
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->

@endsection

@section('extra-scripts')

@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.0049 ]--