@lang('accounting-reports::lang.fixed_asset_details')

{{ $fixed_asset->name }}

{{ $fixed_asset->description ?: '-' }}

{{ !empty($fixed_asset->purchase_date) ? @format_date($fixed_asset->purchase_date) : '-' }}

{{ $fixed_asset->amount }}

{{ !empty($fixed_asset->depreciation_percentage) ? number_format($fixed_asset->depreciation_percentage, 2) . '%' : '-' }}

@if($fixed_asset->is_active) @lang('accounting-reports::lang.active') @else @lang('accounting-reports::lang.inactive') @endif

{{ @format_date($fixed_asset->created_at) }}