@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')) !!}

{!! __('To hand') !!} / {!! $invoice->name !!}

{!! __('Date') !!} : {{ @$invoice->created_at }}


{!! siteName() !!}

{!! __('Dismissal notice') !!} (#{!! $invoice->id !!})


@foreach ($invoice->items as $key => $item) @endforeach
#
{!! __('an item') !!}
{!! __('Quantity') !!}
#

{!! Optional($item->product)->title !!}

{!! @$item->quantity !!}

{{ __('Total') }}:

{!! Optional($invoice->items)->sum('quantity') !!}

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


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