@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.depreciation_report') }} @parent @stop {{-- Page content --}} @section('content')
{{ trans('admin/companies/table.title') }} | {{ trans('admin/categories/general.category_name') }} | {{ trans('admin/hardware/table.asset_tag') }} | {{ trans('admin/hardware/table.title') }} | @if ($snipeSettings->display_asset_name){{ trans('general.name') }} | @endif{{ trans('admin/hardware/table.serial') }} | {{ trans('admin/depreciations/general.depreciation_name') }} | {{ trans('admin/depreciations/general.number_of_months') }} | {{ trans('admin/hardware/table.checkoutto') }} | {{ trans('admin/hardware/table.location') }} | {{ trans('admin/hardware/table.purchase_date') }} | {{ trans('admin/hardware/table.eol') }} | {{ trans('admin/hardware/table.purchase_cost') }} | {{ trans('admin/hardware/table.book_value') }} | {{ trans('admin/hardware/table.diff') }} | |||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ is_null($asset->company) ? '' : $asset->company->name }} | @if ($asset->model) {{ $asset->model->category->name }} @endif |
@if ($asset->deleted_at!='')
|
{{ $asset->model->name }} | @if ($snipeSettings->display_asset_name){{ $asset->name }} | @endif{{ $asset->serial }} | @if ($asset->model->depreciation) {{ $asset->model->depreciation->name }} @endif | @if ($asset->model->depreciation) {{ $asset->model->depreciation->months }} @endif | @if (($asset->checkedOutToUser()) && ($asset->assigned)) {{ $asset->assigned->getFullNameAttribute() }} @else @if ($asset->assigned) {{ $asset->assigned->name }} @endif @endif | @if ($asset->location) {{ $asset->location->name }} @elseif ($asset->defaultloc) {{ $asset->defaultloc->name }} @endif | {{ $asset->purchase_date }} | @if ($asset->model->eol) {{ $asset->present()->eol_date() }} @endif | @if ($asset->purchase_cost > 0)@if ($asset->location && $asset->location->currency) {{ $asset->location->currency }} @else {{ $snipeSettings->default_currency }} @endif {{ \App\Helpers\Helper::formatCurrencyOutput($asset->purchase_cost) }} | @if ($asset->location && $asset->location->currency) {{ $asset->location->currency }} @else {{ $snipeSettings->default_currency }} @endif {{ \App\Helpers\Helper::formatCurrencyOutput($asset->getDepreciatedValue()) }} | @if ($asset->location && $asset->location->currency) {{ $asset->location->currency }} @else {{ $snipeSettings->default_currency }} @endif -{{ \App\Helpers\Helper::formatCurrencyOutput(($asset->purchase_cost - $asset->getDepreciatedValue())) }} | @else@endif |