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

{{__('web.order_id')}} : {{$order->id}}

{{__('web.order_date')}} : {{$order->date}}

{{__('web.order_status')}} : {{__('orders.statuses.'.$order->status)}}

{{__('web.payment_status')}} : {{__('orders.payment_statuses.'.$order->payment_status)}}

{{__('web.way_pay')}} : {{$order->way->currentDescription->title}}

{{__('web.way_shipping')}} : {{$order->shipping->currentDescription->title}}

@foreach($order->products as $row) @if($row->product->canRate) @endif @endforeach
{{__('web.product_image')}} {{__('web.product_name')}} {{__('web.product_code')}} {{__('web.quantity')}} {{__('web.total')}}
{{$row->product->currentDescription->title}} #{{$row->product->code}} {{$row->count}} {{$row->total}} {{__('web.sar')}} {{__('web.rate')}}
  • {{__('web.total_products')}} {{$order->total_products}} {{__('web.sar')}}
  • {{__('web.total_tax')}} {{$order->total_tax}} {{__('web.sar')}}
  • {{__('web.shipping_cost')}} {{$order->shipping_cost}} {{__('web.sar')}}
  • @if($order->on_hand_cost)
  • {{__('web.on_hand_cost')}} {{$order->on_hand_cost}} {{__('web.sar')}}
  • @endif @if($order->discount)
  • {{__('web.discount')}} {{$order->discount}} {{__('web.sar')}}
  • @endif
  • {{__('web.full_total')}} {{$order->total}} {{__('web.sar')}}
@endsection @section('inject_js') @endsection