@extends('docs.master', ['title' => 'Delivery Note '.$model->number]) @section('content')
Deliver To:
{{$model->client->person}},
{{$model->client->company}},
{{$model->client->shipping_address}}
 
Document Delivery Note
Invoice: {{$model->number}}
Delivery Date: {{today()->format('Y-m-d')}}
@foreach($model->items as $item) @endforeach
Item Code Item Description Qty
{{$item->product->item_code}}
{{$item->product->description}}
{{$item->qty}}
Total {{$model->items->sum('qty')}}
@endsection