@extends('layouts.admin.master') @section('body-content')
Buyers Info
{{$data->user->first_name ?? ""}} {{$data->user->last_name ?? ""}}
{{$data->user->email ?? ""}}
{{$data->user->phone ?? ""}}
{{\App\Models\Order::PAYMENT_TYPES[$data->payment_type ?? 0] ?? ""}}
{{--
--}} {{-- --}} {{-- {{$data->status ?? ""}}--}} {{--
--}}
  • Country: {{$billing->country ?? ""}}
  • Address Line 1 : {{$billing->street_address ?? ""}}
  • Address Line 2 : {{$billing->appartment_address ?? ""}}
  • City/Town: {{$billing->city ?? ""}}
  • County : {{$billing->state ?? " "}}
  • Post Code: {{$billing->post_code ?? ""}}
  • Contact Number : {{$billing->phone ?? ""}}
  • Country: {{$shipping->country ?? ""}}
  • Address Line 1 : {{$shipping->street_address ?? ""}}
  • Address Line 2 : {{$shipping->appartment_address ?? ""}}
  • City/Town: {{$shipping->city ?? " "}}
  • County : {{$shipping->state ?? ""}}
  • Post Code: {{$shipping->post_code ?? ""}}
  • Contact Number : {{$shipping->phone ?? ""}}
@if(isset($data->created_at)) {{date_format($data->created_at,'d-m-Y')}} @endif
@if(isset($data->created_at)) {{ date_format($data->created_at,'H:i') }} @endif
{{strtoupper($data->reference) ?? ""}}

Sellers Info
@if(isset($data->order_detail)) @forelse($data->order_detail as $order_detail) @forelse($order_detail->product as $product)
@if(isset($product->product_user) && $product->product_user != NULL )
{{$product->product_user->first_name . " " . $product->product_user->last_name}}
@else {{--{{"Admin Product"}}--}} @endif
@if(isset($product->product_user) && $product->product_user != NULL )
{{$product->product_user->email}}
@else {{--{{"Admin Product"}}--}} @endif
@if(isset($product->product_user) && $product->product_user != NULL )
{{$product->product_user->phone}}
@else {{--{{"Admin Product"}}--}} @endif
@if(isset($product->product_user) && $product->product_user != NULL ) Profile @endif
@empty @endforelse @empty @endforelse @endif
Product Info
@if(isset($data->order_detail)) @forelse($data->order_detail as $order_detail) @forelse($order_detail->product as $product) @if(isset($product->product_user) && $product->product_user != NULL )
{{$product->product_parent->product_name ?? ""}}
{{$order_detail->size_detail->size ?? ""}}
£
Warning: Undefined variable $order_detail in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 229

Warning: Attempt to read property "price" on null in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 229
0.00
£
Warning: Undefined variable $order_detail in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 237

Warning: Attempt to read property "product_discount" on null in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 237
0.00

Warning: Undefined variable $order_detail in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 245

Warning: Attempt to read property "quantity" on null in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 245

Deprecated: abs(): Passing null to parameter #1 ($num) of type int|float is deprecated in /home/keshavvps/public_html/keshav/KG1/HAR/resources/views/admin/order/order-detail.blade.php on line 245
0
{{$product->product_parent->sku ?? ""}}
@endif @empty @endforelse @empty @endforelse @endif
Shipping Documents Info
{{--
--}} @if(count($documents) > 0) @foreach($documents as $document) @endforeach @else @endif
Name Type Email Status Uploaded At Action
{{$document->name}} {{strtoupper($document->extension)}} {{ucwords($document->email_status)}} {{date_format($document->created_at,'d-m-Y')}} Download Delete
There is no documents
@endsection