@extends('layouts/layoutMaster') @section('title', 'Asset Depreciation Management') @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/vendor/libs/select2/select2.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/select2/select2.js' ]) @endsection @section('page-script') @vite('Modules/Akuntansi/resources/assets/js/asset-depreciation.js') @endsection @section('content') {{-- @include('akuntansi::components.menu') --}}
Purchase Price: {{ rupiah_format($asset->purchase_price, 2) }}
Salvage Value: {{ rupiah_format($asset->salvage_value, 2) }}
Useful Life: {{ $asset->useful_life }} years
Depreciation Start Date: {{ $asset->depreciation_start_date }}
| Year | Depreciation Amount | Depreciation Percentage | Total Depreciated |
|---|---|---|---|
| {{ Carbon\Carbon::parse($depreciation->depreciation_date)->year }} | {{ rupiah_format($depreciation->depreciation_amount, 2) }} | {{ number_format($depreciation->depreciation_percentage, 2) }}% | {{ rupiah_format($depreciation->total_depreciated, 2) }} |