@extends('layouts.admin-simple') @section('title', 'Fixed Assets - Warehouse Assets') @section('breadcrumb') @endsection @section('page-title')

Warehouse Assets

Assets currently in warehouse (available, returned, or pending allocation)

arrow_back Back to Overview
@endsection @section('content')

{{ $assets->total() ?? 0 }}

Total Warehouse Assets

{{ $availableCount ?? 0 }}

Available

{{ $returnedCount ?? 0 }}

Returned

AED {{ number_format($totalWarehouseValue ?? 0, 2) }}

Total Value
Clear
storeWarehouse Assets
@forelse($assets as $i => $asset) @empty @endforelse
# 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.

@if($assets->hasPages()) @endif
@endsection