Hello Mrs/Mr/Ms {{ $approver_name }},
You have an approval request for Inventory Usage. We would like to details as follows:
Form Number |
{{ $form->number }}
|
Date Form |
{{ $day_time }}
|
Employee |
{{ 'employee?' }}
|
Warehouse |
{{ $warehouse->name }}
|
Created At |
{{ $created_at }}
|
Created By |
{{ $created_by }}
|
Notes |
{{ $notes }}
|
No |
Item |
Chart of Account |
Quantity Usage |
Notes |
Allocation |
@if (isset($items) && count($items) > 0)
@foreach ($items as $key => $item)
{{ $key + 1 }}
|
{{ $item['item_name'] }}
|
{{ $item['chart_of_account_name'] }}
|
{{ $item['quantity'] }}
|
{{ $item['notes'] }}
|
{{ $item['allocation_name'] }}
|
@endforeach
@endif
@stop