@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(theme_url('/invoice.css')) !!} @endsection @section('content')
{!! Form::open(array('route' => 'delivery2.order','method' => 'POST', 'class' => 'form-horizontal','id' => 'myform')) !!}

{!! __('Order processing bill') !!}

{!! __('Date') !!} : {{ $invoice->created_at->format('Y-m-d') }}


{!! siteName() !!}

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

{!! $invoice->id !!}


@php $j = 1; $items = $invoice->data['products']; @endphp @foreach ($items as $key => $item) @endforeach
#
{!! __('an item') !!}
{!! __('Quantity') !!}
{{ $item[2] }} {{ $item[3] }}

{{ __('Total') }}:

{!! @$invoice->data['total'] !!}

{!! __('Printed on') !!} : {{ date("d-m-Y") }}


{!! Form::close() !!} @endsection @section('scripts') @endsection