!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/resources/views/seller/customer/   drwxr-xr-x
Free 13.42 GB of 57.97 GB (23.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     show.blade.php (4.54 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.app')
@section('head')
@include('layouts.partials.headersection',['title'=>'Customer Info'])
@endsection
@section('content')
<div class="row">
    <div class="col-sm-6">
        <div class="card">
            <div class="card-body">
                
                <h5></h5>
                <ul class="list-group">
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Name') }}: <b>{{ $info->name }}</b>
                    </li>
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Email') }}: <b>{{ $info->email }}</b>
                    </li>
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Registered At') }}: <b>{{ $info->created_at->diffForHumans() }}</b>
                    </li>
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Registration Date') }}: <b>{{ $info->created_at->format('d-F-Y') }}</b>
                    </li>
                </ul>           
            </div>
        </div>
    </div>
    <div class="col-sm-6">
        <div class="card">
            <div class="card-body">
                <ul class="list-group">
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Total Orders') }}
                        <span class="badge badge-info badge-pill">{{ $info->orders_count }}</span>
                    </li>
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Total Processing Orders') }}
                        <span class="badge badge-warning badge-pill">{{ $info->orders_processing_count }}</span>
                    </li>
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Total Complete Orders') }}
                        <span class="badge badge-success badge-pill">{{ $info->orders_complete_count }}</span>
                    </li>
                    <li class="list-group-item d-flex justify-content-between align-items-center">
                        {{ __('Total Spend Of Amount') }}
                        <span class="badge badge-primary badge-pill">{{ amount_format($earnings) }}</span>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</div>


<div class="row">
    <div class="col-md-12">
        <div class="card">
            <div class="card-header">
                <h4>{{ __('Order History') }}</h4>
            </div>
            <div class="card-body p-0">
                <div class="table-responsive table-invoice">
                    <table class="table table-striped">
                        <tbody><tr>
                            <th>{{ __('Invoice ID') }}</th>
                            <th>{{ __('Amount') }}</th>
                            <th>{{ __('Items') }}</th>
                            
                            <th>{{ __('Payment Metho') }}d</th>
                            <th>{{ __('Payment Status') }}</th>
                            <th>{{ __('Order Statu') }}s</th>
                            <th>{{ __('Due Date') }}</th>
                            <th>{{ __('Action') }}</th>
                        </tr>
                        @foreach($orders as $row)
                        <tr>
                            <td><a href="{{ route('seller.invoice',$row->id) }}">{{ $row->order_no }}</a></td>
                            <td class="font-weight-600">{{ amount_format($row->total) }}</td>
                            <td class="font-weight-600">{{ $row->order_item_count }}</td>
                            <td>
                                {{ $row->payment_method->method->name ?? '' }}
                            </td>
                            <td>
                                @if($row->payment_status==2)
                                <span class="badge badge-warning">{{ __('Pending') }}</span>

                                @elseif($row->payment_status==1)
                                <span class="badge badge-success">{{ __('Complete') }}</span>

                                @elseif($row->payment_status==0)
                                <span class="badge badge-danger">{{ __('Cancel') }}</span> 
                                @elseif($row->payment_status==3)
                                <span class="badge badge-danger">{{ __('Incomplete') }}</span> 

                                @endif

                            </td>
                            <td>
                                
                                @if($row->status=='pending')
                                <span class="badge badge-warning">{{ __('Awaiting processing') }}</span>

                                @elseif($row->status=='processing')
                                <span class="badge badge-primary">{{ __('Processing') }}</span>

                                @elseif($row->status=='ready-for-pickup')
                                <span class="badge badge-info">{{ __('Ready for pickup') }}</span>

                                @elseif($row->status=='completed')
                                <span class="badge badge-success">{{ __('Completed') }}</span>

                                @elseif($row->status=='archived')
                                <span class="badge badge-warning">{{ __('Archived') }}</span>
                                @elseif($row->status=='canceled')
                                <span class="badge badge-danger">{{ __('Canceled') }}</span>

                                @else
                                <span class="badge badge-info">{{ $row->status }}</span>

                                @endif

                            </td>
                            <td>{{ $row->created_at->format('d-F-Y') }}</td>
                            <td>
                                <a href="{{ route('seller.order.show',$row->id) }}" class="btn btn-primary">{{ __('Detail') }}</a>
                            </td>
                        </tr>
                        @endforeach

                        </tbody>
                    </table>

                    {{ $orders->links('vendor.pagination.bootstrap-4') }}
                </div>
            </div>
        </div>
    </div>

</div>

@endsection

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0137 ]--