@extends('docs.master', ['title' => 'Pick List '.$model->number])
@section('content')
Ship To:
{{$model->client->person}},
{{$model->client->company}},
{{$model->client->shipping_address}}
| Document |
Pick List |
| Sales Order: |
{{$model->number}} |
@if($model->reference)
| Reference: |
{{$model->reference}} |
@endif
| Print Timestamp: |
{{Carbon\Carbon::now()}} |
| Item Code |
Item Description |
Qty |
Verify |
@foreach($model->items as $item)
| {{$item->product->item_code}} |
{{$item->product->description}}
|
{{$item->qty}} |
|
@endforeach
|
Total |
{{$model->items->sum('qty')}}
|
|
@endsection