@extends('layouts.admin-simple') @section('title', 'View Asset Receipt') @section('breadcrumb')
Asset receipt from {{ $incoming->supplier ? $incoming->supplier->name : 'Unknown' }}
| Receipt # | {{ $incoming->receipt_number }} |
| Supplier | {{ $incoming->supplier ? $incoming->supplier->name : '-' }} |
| Invoice # | {{ $incoming->invoice_number ?? '-' }} |
| Invoice Date | {{ $incoming->invoice_date ? $incoming->invoice_date->format('M d, Y') : '-' }} |
| Receipt Date | {{ $incoming->receipt_date ? $incoming->receipt_date->format('M d, Y') : '-' }} |
| Received By | {{ $incoming->receiver ? $incoming->receiver->name : '-' }} |
| Approved By | {{ $incoming->approver ? $incoming->approver->name : '-' }} |
| Status | {{ ucfirst($incoming->status) }} |
Notes: {{ $incoming->notes }}
@endif| # | Asset Name | Category | Serial # | Qty | Unit Price | Total | Condition |
|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $item->asset_name }} | {{ $item->category ? $item->category->category_name : '-' }} | {{ $item->serial_number ?? '-' }} | {{ $item->quantity }} | AED {{ number_format($item->unit_price, 2) }} | AED {{ number_format($item->total_price, 2) }} | {{ ucfirst($item->condition ?? 'new') }} |