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


{!! __('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") }}


@endsection @section('script') @endsection