@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(theme_url('/invoice.css')) !!} @endsection @section('content')
{!! __('Phone') !!} : {!! @$order->address->phone !!}
{!! __('Destination') !!} : {!! @$order->destination->title !!}
{!! __('Date') !!} : {{ $order->created_at->format('Y/m/d - h:i') }} {{ __($order->created_at->format('a')) }}
# |
{!! __('Item') !!} |
{!! __('Quantity') !!} |
{!! __('Price') !!} |
{!! __('Total') !!} |
|
---|---|---|---|---|---|
{!! $j++ !!} | {!! $item->name !!} | {!! $item->qty !!} | {!! $item->price !!} {{ __('EGP') }} | {!! ($item->price)*$item->qty !!} {!! __('EGP') !!} | |
{{ __('Order Total') }}: {!! __('Delivery') !!}: |
{{ @$order->price - 0}} {{ __('EGP') }} {{ @$order->delivery - 0}} {{ __('EGP') }} |
||||
{!! __('Total payment') !!}: |
{{ @$order->price + @$order->delivery}} {{ __('EGP') }} |
{!! __('Printed on') !!} : {{ date("d-m-Y") }}