@extends('layouts.admin-simple') @section('title', 'Fixed Assets - Condition Report') @section('breadcrumb')
Assets grouped by condition with detailed breakdown
| # | Asset Code | Asset Name | Category | Condition | Location | Project | Book Value | Last Inspection | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $assets->firstItem() + $i }} | {{ $asset->asset_code }} |
{{ $asset->asset_name }} | {{ $asset->category ? $asset->category->category_name : '-' }} | {{ ucfirst(str_replace('_', ' ', $asset->condition)) }} | {{ $asset->current_location ?? '-' }} | {{ $asset->currentProject ? $asset->currentProject->project_name : '-' }} | AED {{ number_format($asset->current_book_value ?? $asset->purchase_price, 2) }} | {{ $asset->last_inspection_date ? \Carbon\Carbon::parse($asset->last_inspection_date)->format('M d, Y') : '-' }} |
visibility
@if(in_array($asset->condition, ['poor', 'damaged', 'non_functional']))
@can('warehouse.fixed-assets.maintenance.create')
build
@endcan
@endif
|
|
assessment
No asset condition data available. |
|||||||||