Files
snipe-it/app/views/backend/reports/index.blade.php
T
2015-02-26 23:48:17 +10:30

96 lines
3.1 KiB
PHP
Executable File

@extends('backend/layouts/default')
{{-- Page title --}}
@section('title')
@lang('general.depreciation_report') ::
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="page-header">
<div class="pull-right">
<a href="{{ route('reports/export') }}" class="btn btn-flat gray pull-right"><i class="fa fa-download icon-white"></i>
@lang('admin/hardware/table.dl_csv')</a>
</div>
<h3>@lang('general.depreciation_report')</h3>
</div>
<div class="row">
<div class="table-responsive">
<table id="example">
<thead>
<tr role="row">
<th class="col-sm-1">@lang('admin/hardware/table.asset_tag')</th>
<th class="col-sm-1">@lang('admin/hardware/table.title')</th>
@if (Setting::getSettings()->display_asset_name)
<th class="col-sm-1">@lang('general.name')</th>
@endif
<th class="col-sm-1">@lang('admin/hardware/table.serial')</th>
<th class="col-sm-1">@lang('admin/hardware/table.checkoutto')</th>
<th class="col-sm-1">@lang('admin/hardware/table.location')</th>
<th class="col-sm-1">@lang('admin/hardware/table.purchase_date')</th>
<th class="col-sm-1">@lang('admin/hardware/table.eol')</th>
<th class="col-sm-1">@lang('admin/hardware/table.purchase_cost')</th>
<th class="col-sm-1">@lang('admin/hardware/table.book_value')</th>
<th class="col-sm-1">@lang('admin/hardware/table.diff')</th>
</tr>
</thead>
<tbody>
@foreach ($assets as $asset)
<tr>
<td>{{{ $asset->asset_tag }}}</td>
<td>{{{ $asset->model->name }}}</td>
@if (Setting::getSettings()->display_asset_name)
<td>{{{ $asset->name }}}</td>
@endif
<td>{{ $asset->serial }}</td>
<td>
@if ($asset->assigned_to != '')
<a href="{{ route('view/user', $asset->assigned_to) }}">
{{{ $asset->assigneduser->fullName() }}}
</a>
@endif
</td>
<td>
@if (($asset->assigned_to > 0) && ($asset->assigneduser->location_id > 0)) {{{ Location::find($asset->assigneduser->location_id)->city }}}
,
{{{ Location::find($asset->assigneduser->location_id)->state }}}
@endif
</td>
<td>{{{ $asset->purchase_date }}}</td>
<td>
@if ($asset->model->eol) {{{ $asset->eol_date() }}}
@endif
</td>
@if ($asset->purchase_cost > 0)
<td class="align-right">@lang('general.currency')
{{{ number_format($asset->purchase_cost) }}}</td>
<td class="align-right">@lang('general.currency')
{{{ number_format($asset->depreciate()) }}}</td>
<td class="align-right">@lang('general.currency')
-{{{ number_format(($asset->purchase_cost - $asset->depreciate())) }}}</td>
@else
<td></td>
<td></td>
<td></td>
@endif
</tr>
@endforeach
</tbody>
</table>
</div>
@stop