@extends('master.back') @section('content')
{{ __('Order Status') }}
{{ __('Payment Status') }}
{{ __('Payment Method') }}
{{ __('Order Date') }}
| {{ __('Product') }} | {{ __('Price') }} | {{ __('Quantity') }} | {{ __('Total') }} |
|---|---|---|---|
{{ $item_name }}@if(isset($item['size']) && $item['size']) {{ __('Size') }}: {{ $item['size'] }} @endif @if(isset($item['color']) && $item['color']) {{ __('Color') }}: {{ $item['color'] }} @endif |
৳{{ number_format($unit_price, 2) }} | {{ $qty }} | ৳{{ number_format($line_total, 2) }} |
{{ __('Name') }}: {{ $order->user->first_name ?? 'N/A' }} {{ $order->user->last_name ?? '' }}
{{ __('Email') }}: {{ $order->user->email ?? 'N/A' }}
{{ __('Phone') }}: {{ $order->user->phone ?? 'N/A' }}
{{ __('Customer ID') }}: #{{ $order->user_id }}
{{ __('Service') }}: {{ $shipping_service['title'] }}
{{ __('Cost') }}: ৳{{ number_format($shipping_service['price'] ?? 0, 2) }}
@if(isset($shipping_service['is_condition']) && $shipping_service['is_condition'] == 1){{ __('Conditional Shipping') }} (Min: ৳{{ number_format($shipping_service['minimum_price'] ?? 0, 2) }})
@endif{{ __('Name') }}: {{ $shipping['ship_first_name'] ?? 'N/A' }}
{{ __('Email') }}: {{ $shipping['ship_email'] ?? 'N/A' }}
{{ __('Phone') }}: {{ $shipping['ship_phone'] ?? 'N/A' }}
{{ __('Address') }}:
{{ $shipping['ship_address1'] ?? '' }}
{{ $shipping['ship_address2'] ?? '' }}
{{ $shipping['ship_city'] ?? '' }} {{ $shipping['ship_zip'] ?? '' }}
{{ $shipping['ship_country'] ?? '' }}
{{ __('Company') }}: {{ $shipping['ship_company'] }}
@endif{{ __('City') }}: {{ $pathaoNames['city_name'] }} (ID: {{ $shipping['pathao_city_id'] }})
@endif{{ __('Zone') }}: {{ $pathaoNames['zone_name'] }} (ID: {{ $shipping['pathao_zone_id'] }})
@endif{{ __('Area') }}: {{ $pathaoNames['area_name'] }} (ID: {{ $shipping['pathao_area_id'] }})
@endif{{ __('Pathao Shipping Cost') }}: {{ '৳' }}{{($shipping['pathao_shipping_cost']) }}
@endif{{ $track->created_at->format('M d, Y - h:i A') }}