@extends('layouts.admin-simple') @section('title', 'Material Issue Details') @section('breadcrumb')
Direct and indirect goods issue details
| Request Number: | {{ $displayNumber }} |
| Request Date: | {{ $requestDate ? $requestDate->format('d M, Y') : '-' }} |
| Status: | {{ $status->label }} |
| Project: | {{ $project->project_name ?? 'N/A' }} |
| Division: | {{ $division->division_name ?? 'N/A' }} |
| Requested By: | {{ $requester->name ?? 'N/A' }} |
| Item Code | Description | Requested | Issued | Balance | Unit Price | Total |
|---|---|---|---|---|---|---|
| {{ $item->item->item_code ?? 'N/A' }} | {{ $item->item->item_description ?? 'Unknown Item' }} | {{ number_format($item->quantity_requested, 2) }} | {{ number_format($item->quantity_released, 2) }} | {{ number_format($item->quantity_balance, 2) }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->total_price, 2) }} |
| Direct Goods Total | {{ number_format($directRequest->items->sum('total_price'), 2) }} | |||||
| Item Code | Description | Invoice | Requested | Issued | Balance | Unit Price | Total |
|---|---|---|---|---|---|---|---|
| {{ $item->indirectGood->ig_code ?? 'N/A' }} | {{ $item->indirectGood->ig_description ?? 'Unknown Item' }} | {{ $item->invoice_number ?: '-' }} | {{ number_format($item->quantity_requested, 2) }} | {{ number_format($item->quantity_released, 2) }} | {{ number_format($item->quantity_balance, 2) }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->total_price, 2) }} |
| Indirect Goods Total | {{ number_format($indirectRequest->items->sum('total_price'), 2) }} | ||||||