@extends('layouts.app') @push('styles') @endpush @section('content')
Financial Intelligence
| التاريخ | المركبة | رقم اللوحة | الطريقة | مبلغ الإهلاك | المتراكم | صافي القيمة |
|---|---|---|---|---|---|---|
| {{ $dep->depreciation_date->format('Y-m-d') }} |
{{ $dep->car->title }}
{{ $dep->car->brand?->name }}
|
{{ $dep->car->plate_number }} | @php $m = ['straight_line' => 'قسط ثابت', 'declining_balance' => 'قسط متناقص', 'mileage' => 'حسب الاستخدام'][$dep->car->depreciation_method] ?? '-'; @endphp {{ $m }} | ({{ number_format($dep->amount, 2) }}) | {{ number_format($dep->accumulated_depreciation, 2) }} | {{ number_format($dep->book_value, 2) }} |