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

Asset Inventory Overview

Summary of all fixed assets across locations

store Warehouse Assets business Project Assets assessment Condition Report timeline Movement History
@endsection @section('content')
inventory_2

{{ $totalAssets ?? 0 }}

Total Assets
store

{{ $inWarehouse ?? 0 }}

In Warehouse
check_circle

{{ $inUse ?? 0 }}

In Use
build

{{ $underMaintenance ?? 0 }}

Under Maintenance
delete_forever

{{ $disposed ?? 0 }}

Disposed
Total Purchase Value

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

Current Book Value

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

Total Depreciation

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

categoryAssets by Category
@forelse($byCategory ?? [] as $category) @empty @endforelse
Category Count Total Value
{{ $category->category_name ?? 'Uncategorized' }} {{ $category->assets_count }} AED {{ number_format($category->total_value ?? 0, 2) }}
No data available.
star_halfAssets by Condition
@php $conditionColors = ['new' => 'success', 'good' => 'info', 'fair' => 'warning', 'poor' => 'danger', 'damaged' => 'danger', 'non_functional' => 'dark']; @endphp @forelse($byCondition ?? [] as $condition) @empty @endforelse
Condition Count Percentage
{{ ucfirst(str_replace('_', ' ', $condition->condition)) }} {{ $condition->count }} @php $pct = ($totalAssets ?? 0) > 0 ? round(($condition->count / $totalAssets) * 100, 1) : 0; @endphp
{{ $pct }}%
No data available.
autorenewAssets by Lifecycle Status
@php $lifecycleColors = ['in_warehouse' => 'info', 'allocated' => 'primary', 'in_use' => 'success', 'under_maintenance' => 'warning', 'returned' => 'secondary', 'disposed' => 'dark']; @endphp @forelse($byLifecycle ?? [] as $lifecycle) @empty @endforelse
Lifecycle Status Count Total Purchase Value Total Book Value
{{ ucfirst(str_replace('_', ' ', $lifecycle->lifecycle_status)) }} {{ $lifecycle->count }} AED {{ number_format($lifecycle->total_purchase_value ?? 0, 2) }} AED {{ number_format($lifecycle->total_book_value ?? 0, 2) }}
No data available.
timelineRecent Movements
View All
@php $moveColors = ['incoming' => 'success', 'allocation' => 'primary', 'return' => 'info', 'transfer' => 'warning', 'maintenance' => 'secondary', 'disposal' => 'danger']; @endphp @forelse($recentMovements ?? [] as $movement) @empty @endforelse
Date Asset Type From To By
{{ $movement->movement_date ? \Carbon\Carbon::parse($movement->movement_date)->format('M d, Y') : '-' }} @if($movement->fixedAsset) {{ $movement->fixedAsset->asset_code }} {{ $movement->fixedAsset->asset_name }} @else - @endif {{ ucfirst($movement->movement_type) }} {{ $movement->from_location ?? '-' }} {{ $movement->to_location ?? '-' }} {{ $movement->performedBy ? $movement->performedBy->name : '-' }}
No recent movements.
@endsection @push('styles') @endpush