@extends('web.layouts.layout') @section('content')
@include('web.pages.components.header.header')

{{__('web.order_details')}}

{{__('web.order_date')}} :{{$order->date}}
{{__('web.order_id')}} : {{$order->id}}
@foreach($order->products as $row)
{{__('web.order_statuses.'.$order->status)}}

{!! $row->product->currentDescription->title !!}

x{{$row->count}}
@endforeach
{{__('web.order_summary')}}
  • {{__('web.total_product')}}
    {{$order->total_products}} {{__('web.sar')}}.
  • {{__('web.tax_cost')}}
    {{$order->total_tax}} {{__('web.sar')}}.
  • @if($order->discount)
  • {{__('web.discount')}}
    {{$order->discount}} {{__('web.sar')}}.
  • @endif @if($order->discount_offer)
  • {{__('web.discount_offer')}}
    {{$order->discount_offer}} {{__('web.sar')}}.
  • @endif @if($order->on_hand_cost)
  • {{__('web.on_hand_cost')}}
    {{$order->on_hand_cost}} {{__('web.sar')}}.
  • @endif
  • {{__('web.shipping_cost')}}
    {{$order->shipping_cost ? $order->shipping_cost .' '.__('web.sar').'.' : __('web.free_shipping')}}
  • {{__('web.total')}} {{__('web.vat_inc')}}
    {{$order->total}} {{__('web.sar')}}.
{{__('web.pay_details')}}
{{ $order->way->currentDescription->title }}
{{__('web.address_delivery')}}
{{__('web.addresses_status.'.$order->address->delivery_status)}}
{{__('web.delivery_to')}} {{$order->address->user_name}}
{{$order->address->address}}
{{__('web.phone')}}: {{$order->address->phone}}
@include('web.layouts.footer_banner')
@endsection @section('inject_js') @endsection