@extends('docs.master', ['title' => 'Goods Issue '.$model->number])
@section('content')
Issued To:
{{$model->client->person}},
{{$model->client->company}},
{{$model->client->billing_address}}
| Document |
Goods Issue |
| Date: |
{{$model->date}} |
| Goods Issue Number: |
{{$model->number}} |
| Sales Order Number: |
{{$model->salesOrder->number}} |
@if($model->reference)
| Reference: |
{{$model->reference}} |
@endif
| Item Code |
Item Description |
Qty Issued |
@foreach($model->items as $item)
| {{$item->product->item_code}} |
{{$item->product->description}}
|
{{$item->qty}} |
@endforeach
|
Total |
{{$model->items->sum('qty')}}
|
@if($model->note)
@endif
@endsection