Back
Requisition Information
Requisition No#{{ $requisition->requisition_number }}
|
Items
Item |
Category |
Unit |
Quantity |
@foreach ($requisition->items as $row)
{{ $row->item->name ?? '' }} |
{{ $row->item->category->name ?? '' }} |
{{ $row->item->unit->name ?? '' }} |
{{ $row->quantity ?? '' }} |
@endforeach
Remarks |
{{ $requisition->remark ?? '' }} |
@if ($requisition->requisitionApprove)
Requisition Approve Information
Requisition Approve
No#{{ $requisition->requisitionApprove->requisition_approve_number ?? '' }} |
Items
Item |
Category |
Unit |
Quantity |
@php
$a_items = $requisition->requisitionApprove->items ?? '';
@endphp
@foreach ($a_items as $row)
{{ $row->item->name ?? '' }} |
{{ $row->item->category->name ?? '' }} |
{{ $row->item->unit->name ?? '' }} |
{{ $row->quantity ?? '' }} |
@endforeach
Remarks |
{{ $requisition->requisitionApprove->remark ?? '' }} |
@endif