@extends('layouts.print') @section('content')

{{ __('Purchase invoice') }} #{!! $order->order_number !!}

{!! __('Total bill') !!} :

  • {!! __('Subtotal') !!} :{{ @$order->price }} {!! __('EGP') !!}
  • {{ __('Delivery') }} : {{ @$order->delivery }} {!! __('EGP') !!}
  • {{ __('Order Total') }} :{{ @$order->price+@$order->delivery }} {!! __('EGP') !!}

{!! __('Place of delivery') !!} :

  • {{ __('Mobile number') }} :{{ @$order->address->phone }}
  • {{ __('City / District') }} :{{ @$order->address->region }}
  • {{ __('Detailed address') }} : {{ @$order->address->address }}

{!! __('Status') !!}:

  • {!! __('Invoice number') !!} :{!! $order->order_number !!}
  • {!! __('Date') !!} :{{ $order->created_at->format('Y/m/d - h:i') }} {{ __($order->created_at->format('a')) }}
  • {!! transactionOrdr($order->status) !!}

{!! __('Order summary') !!}

@foreach ($order->cart as $k => $item) @endforeach
{!! __('Item') !!} {!! __('Price') !!} {!! __('Quantity') !!} {!! __('Total') !!}
{!! $item->name !!} {!! $item->price !!} {{ __('EGP') }} {!! $item->qty !!} {{ $item->subtotal }} {{ __('EGP') }}
{!! __('Subtotal') !!} {{ @$order->price }} {!! __('EGP') !!}
{{ __('Delivery') }} {{ @$order->delivery }} {!! __('EGP') !!}
{{ __('Order Total') }} {{ @$order->price+@$order->delivery }} {!! __('EGP') !!}
@endsection @section('script') @endsection