@extends('layouts.admin-simple') @section('title', 'Asset Depreciation') @section('breadcrumb')
Overview of fixed asset depreciation
| # | Asset Code | Asset Name | Category | Purchase Price | Accum. Depr. | Book Value | Method | Useful Life | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $records->firstItem() + $i }} | {{ $rec->asset_code }} |
{{ $rec->asset_name }} | {{ $rec->category ? $rec->category->category_name : '-' }} | AED {{ number_format($rec->purchase_price ?? 0, 2) }} | AED {{ number_format($rec->accumulated_depreciation ?? 0, 2) }} | AED {{ number_format($rec->current_book_value ?? 0, 2) }} | {{ ucfirst(str_replace('_',' ', $rec->depreciation_method ?? 'straight_line')) }} | {{ ($rec->useful_life_years ?? 0) * 12 }} mo | visibility |
| No depreciation records found. | |||||||||