@extends('layouts.admin-simple') @section('title', 'Fixed Assets - Warehouse Assets') @section('breadcrumb')
Assets currently in warehouse (available, returned, or pending allocation)
| # | Asset Code | Asset Name | Category | Serial Number | Condition | Lifecycle | Book Value | |
|---|---|---|---|---|---|---|---|---|
| {{ $assets->firstItem() + $i }} | {{ $asset->asset_code }} |
{{ $asset->asset_name }} | {{ $asset->category ? $asset->category->category_name : '-' }} | {{ $asset->serial_number ?? '-' }} | @php $condColors = ['new'=>'success','good'=>'info','fair'=>'warning','poor'=>'danger','damaged'=>'danger']; @endphp {{ ucfirst($asset->condition) }} | @php $lcColors = ['in_warehouse'=>'info','returned'=>'secondary']; @endphp {{ ucfirst(str_replace('_', ' ', $asset->lifecycle_status)) }} | AED {{ number_format($asset->current_book_value ?? $asset->purchase_price, 2) }} | visibility |
|
store
No assets currently in warehouse. |
||||||||