@extends('layouts.admin-simple') @section('title', 'Fixed Assets - Inventory Overview') @section('breadcrumb')
Summary of all fixed assets across locations
| Category | Count | Total Value |
|---|---|---|
| {{ $category->category_name ?? 'Uncategorized' }} | {{ $category->assets_count }} | AED {{ number_format($category->total_value ?? 0, 2) }} |
| No data available. | ||
| Condition | Count | Percentage |
|---|---|---|
| {{ ucfirst(str_replace('_', ' ', $condition->condition)) }} | {{ $condition->count }} |
@php $pct = ($totalAssets ?? 0) > 0 ? round(($condition->count / $totalAssets) * 100, 1) : 0; @endphp
|
| No data available. | ||
| 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. | |||
| 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. | |||||