@extends('layouts.default') @section('content')

View Assets Reports

{{ CommonHelper::displayPrintButtonInBlade('printList','','1') }}   {{ CommonHelper::displayExportButton('EmpExitInterviewList','','1') }}
@if(!empty($assets)) @foreach ($assets as $key => $value) @endforeach @else @endif
S.No Asset Code Asset Nmae Installed Date Premise Purchase Price Useful Life Depreciation Method Depreciation Per Year Net Book Value
{{ $counter++ }} {{ $value->asset_code }} {{ $value->asset_name }} {{ CommonHelper::changeDateFormat($value->installed_date) }} @if(array_key_exists($value->premise_id, $premises_array)) {{ $premises_array[$value->premise_id]->premises_name }} @endif {{ $value->purchase_price }} {{ $useful_life }} @if(array_key_exists($value->depreciation_method, $depreciation_method)) {{ $depreciation_method[$value->depreciation_method] }} @endif {{ $value->depreciation }} {{ $book_value }}
No record found !
@endsection