@extends('layouts.admin-simple') @section('title', 'Fixed Asset Incoming') @section('breadcrumb')
Manage fixed asset receipts from suppliers
| # | Receipt Number | Supplier | Invoice # | Date | Items | Total | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $receipts->firstItem() + $i }} | {{ $receipt->receipt_number }} |
{{ $receipt->supplier ? $receipt->supplier->name : '-' }} | {{ $receipt->invoice_number ?? '-' }} | {{ $receipt->receipt_date ? $receipt->receipt_date->format('M d, Y') : '-' }} | {{ $receipt->items->count() }} | AED {{ number_format($receipt->total_amount, 2) }} | {{ ucfirst($receipt->status) }} | visibility @if($receipt->status == 'draft') @can('warehouse.fixed-asset-incoming.edit') edit @endcan @endif |
| No incoming receipts found. | ||||||||