@permission('fixed-asset-types')
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
Name |
Depreciation Policy |
Depreciation Rate |
Created |
Action |
@if( $fixed_asset_types->count() > 0 )
@foreach( $fixed_asset_types as $list )
{{$list->name}} |
@if($list->depreciation_policy == 'straight_line_method')
{{'Straight Line Method'}}
@else
{{'Reducing Balance Method'}}
@endif
|
{{$list->depreciation_rate}}% |
{{date('d-F-Y' , strtotime($list->created_at))}}
|
|
@endforeach
@endif