@extends('emails.template') @section('content')
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 }}

@if (isset($items) && count($items) > 0) @foreach ($items as $key => $item) @endforeach @endif
No Item Chart of Account Quantity Usage Notes Allocation
{{ $key + 1 }} {{ $item['item_name'] }} {{ $item['chart_of_account_name'] }} {{ $item['quantity'] }} {{ $item['notes'] }} {{ $item['allocation_name'] }}

Check Approve Reject

@stop