2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
{{ trans('admin/hardware/general.view') }} {{ $asset->asset_tag }}
|
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{-- Right header --}}
|
|
|
|
@section('header_right')
|
2016-08-02 00:54:38 -07:00
|
|
|
@can('assets.manage')
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="dropdown pull-right">
|
|
|
|
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">{{ trans('button.actions') }}
|
|
|
|
<span class="caret"></span>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenu1">
|
2016-06-02 14:04:54 -07:00
|
|
|
@if ($asset->assetstatus->deployable=='1')
|
2016-03-25 01:18:05 -07:00
|
|
|
@if ($asset->assigned_to != '')
|
|
|
|
<li role="presentation"><a href="{{ route('checkin/hardware', $asset->id) }}">{{ trans('admin/hardware/general.checkin') }}</a></li>
|
|
|
|
@else
|
|
|
|
<li role="presentation"><a href="{{ route('checkout/hardware', $asset->id) }}">{{ trans('admin/hardware/general.checkout') }}</a></li>
|
|
|
|
@endif
|
2016-06-02 14:04:54 -07:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
<li role="presentation"><a href="{{ route('update/hardware', $asset->id) }}">{{ trans('admin/hardware/general.edit') }}</a></li>
|
|
|
|
<li role="presentation"><a href="{{ route('clone/hardware', $asset->id) }}">{{ trans('admin/hardware/general.clone') }}</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2016-08-02 00:54:38 -07:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
|
|
|
<!-- Custom Tabs -->
|
|
|
|
<div class="nav-tabs-custom">
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<li class="active">
|
2016-04-07 02:51:57 -07:00
|
|
|
<a href="#details" data-toggle="tab"><span class="hidden-lg hidden-md"><i class="fa fa-info-circle"></i></span> <span class="hidden-xs hidden-sm">Details</span></a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
|
|
|
<li>
|
2016-04-07 02:51:57 -07:00
|
|
|
<a href="#software" data-toggle="tab"><span class="hidden-lg hidden-md"><i class="fa fa-floppy-o"></i></span> <span class="hidden-xs hidden-sm">Licenses</span></a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-08-16 18:49:54 -07:00
|
|
|
<li>
|
|
|
|
<a href="#components" data-toggle="tab"><span class="hidden-lg hidden-md"><i class="fa fa-hdd-o"></i></span> <span class="hidden-xs hidden-sm">Components</span></a>
|
|
|
|
</li>
|
2016-03-25 01:18:05 -07:00
|
|
|
<li>
|
2016-04-07 02:51:57 -07:00
|
|
|
<a href="#maintenances" data-toggle="tab"><span class="hidden-lg hidden-md"><i class="fa fa-wrench"></i></span> <span class="hidden-xs hidden-sm">Maintenances</span></a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
|
|
|
<li>
|
2016-04-07 02:51:57 -07:00
|
|
|
<a href="#history" data-toggle="tab"><span class="hidden-lg hidden-md"><i class="fa fa-history"></i></span> <span class="hidden-xs hidden-sm">History</span></a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
|
|
|
<li>
|
2016-04-07 02:51:57 -07:00
|
|
|
<a href="#files" data-toggle="tab"><span class="hidden-lg hidden-md"><i class="fa fa-files-o"></i></span> <span class="hidden-xs hidden-sm">Files</span></a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-04-07 02:51:57 -07:00
|
|
|
<li class="pull-right">
|
2016-08-16 18:49:54 -07:00
|
|
|
<a href="#" data-toggle="modal" data-target="#uploadFileModal"><i class="fa fa-paperclip"></i> </a>
|
|
|
|
</li>
|
2016-03-25 01:18:05 -07:00
|
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane fade in active" id="details">
|
|
|
|
<div class="row">
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-8">
|
|
|
|
<div class="table-responsive" style="margin-top: 10px;">
|
|
|
|
<table class="table">
|
2016-03-25 01:18:05 -07:00
|
|
|
<tbody>
|
2016-08-16 18:49:54 -07:00
|
|
|
@if ($asset->company)
|
2016-06-15 11:50:57 -07:00
|
|
|
<tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
<td>{{ trans('general.company') }}</td>
|
|
|
|
<td>{{ $asset->company->name }}</td>
|
2016-06-15 11:50:57 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
2016-06-15 11:50:57 -07:00
|
|
|
@if ($asset->name)
|
2016-08-16 18:49:54 -07:00
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.name') }}</td>
|
|
|
|
<td>{{ $asset->name }}</td>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
|
|
|
@if ($asset->serial)
|
2016-08-16 18:49:54 -07:00
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.serial') }}</td>
|
|
|
|
<td>{{ $asset->serial }}</td>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
|
|
|
@if ($asset->model->manufacturer)
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.manufacturer') }}</td>
|
|
|
|
<td>
|
2016-06-15 21:14:26 -07:00
|
|
|
<a href="{{ route('view/manufacturer', $asset->model->manufacturer->id) }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
{{ $asset->model->manufacturer->name }}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.model') }}</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ route('view/model', $asset->model->id) }}">
|
|
|
|
{{ $asset->model->name }}
|
|
|
|
</a>
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/models/table.modelnumber') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ $asset->model->modelno }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->model->fieldset)
|
2016-08-16 18:49:54 -07:00
|
|
|
@foreach($asset->model->fieldset->fields as $field)
|
|
|
|
<tr>
|
2016-08-25 21:03:24 -07:00
|
|
|
<td>{{ $field->name }}
|
|
|
|
|
|
|
|
|
|
|
|
</td>
|
2016-08-16 18:49:54 -07:00
|
|
|
<td>
|
2016-08-25 21:03:24 -07:00
|
|
|
@if ($field->field_encrypted=='1')
|
|
|
|
<i class="fa fa-lock" data-toggle="tooltip" data-placement="top" title="{{ trans('admin/custom_fields/general.value_encrypted') }}"></i>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($field->isFieldDecryptable($asset->{$field->db_column_name()} ))
|
|
|
|
|
|
|
|
@can('admin')
|
|
|
|
@if (($field->format=='URL') && ($asset->{$field->db_column_name()}!=''))
|
|
|
|
<a href="{{ \App\Helpers\Helper::gracefulDecrypt($field, $asset->{$field->db_column_name()}) }}" target="_new">{{ \App\Helpers\Helper::gracefulDecrypt($field, $asset->{$field->db_column_name()}) }}</a>
|
|
|
|
@else
|
|
|
|
{{ \App\Helpers\Helper::gracefulDecrypt($field, $asset->{$field->db_column_name()}) }}
|
|
|
|
@endif
|
|
|
|
@else
|
|
|
|
{{ strtoupper(trans('admin/custom_fields/general.encrypted')) }}
|
|
|
|
@endcan
|
2016-08-18 12:44:55 -07:00
|
|
|
|
|
|
|
@else
|
2016-08-25 21:03:24 -07:00
|
|
|
@if (($field->format=='URL') && ($asset->{$field->db_column_name()}!=''))
|
|
|
|
<a href="{{ $asset->{$field->db_column_name()} }}" target="_new">{{ $asset->{$field->db_column_name()} }}</a>
|
|
|
|
@else
|
|
|
|
{{ $asset->{$field->db_column_name()} }}
|
|
|
|
@endif
|
2016-08-18 12:44:55 -07:00
|
|
|
@endif
|
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->purchase_date)
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.date') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ date('M d, Y',strtotime($asset->purchase_date)) }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->purchase_cost)
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.cost') }}</td>
|
|
|
|
<td>
|
|
|
|
@if (($asset->id) && ($asset->userloc))
|
|
|
|
{{ $asset->userloc->currency }}
|
|
|
|
@elseif (($asset->id) && ($asset->assetloc))
|
|
|
|
{{ $asset->assetloc->currency }}
|
|
|
|
@else
|
|
|
|
{{ \App\Models\Setting::first()->default_currency }}
|
|
|
|
@endif
|
2016-08-16 18:47:53 -07:00
|
|
|
{{ \App\Helpers\Helper::formatCurrencyOutput($asset->purchase_cost)}}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
@if ($asset->order_number)
|
|
|
|
(Order #{{ $asset->order_number }})
|
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->supplier_id)
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.supplier') }}</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ route('view/supplier', $asset->supplier_id) }}">
|
|
|
|
{{ $asset->supplier->name }}
|
|
|
|
</a>
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->warranty_months)
|
2016-08-16 18:49:54 -07:00
|
|
|
<tr {!! $asset->warrantee_expires() < date("Y-m-d") ? ' class="warning"' : '' !!}>
|
|
|
|
<td>{{ trans('admin/hardware/form.warranty') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ $asset->warranty_months }}
|
|
|
|
{{ trans('admin/hardware/form.months') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
({{ trans('admin/hardware/form.expires') }}
|
|
|
|
{{ $asset->warrantee_expires() }})
|
|
|
|
</td>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->depreciation)
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.depreciation') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ $asset->depreciation->name }}
|
|
|
|
({{ $asset->depreciation->months }}
|
|
|
|
{{ trans('admin/hardware/form.months') }}
|
|
|
|
)
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{ trans('admin/hardware/form.fully_depreciated') }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($asset->time_until_depreciated()->y > 0)
|
|
|
|
{{ $asset->time_until_depreciated()->y }}
|
|
|
|
{{ trans('admin/hardware/form.years') }},
|
|
|
|
@endif
|
|
|
|
{{ $asset->time_until_depreciated()->m }}
|
|
|
|
{{ trans('admin/hardware/form.months') }}
|
|
|
|
({{ $asset->depreciated_date()->format('Y-m-d') }})
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
@if ($asset->model->eol)
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.eol_rate') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ $asset->model->eol }}
|
|
|
|
{{ trans('admin/hardware/form.months') }}
|
|
|
|
|
|
|
|
(
|
|
|
|
{{ trans('admin/hardware/form.eol_date') }}:
|
|
|
|
{{ $asset->eol_date() }}
|
|
|
|
@if ($asset->months_until_eol())
|
|
|
|
(
|
|
|
|
@if ($asset->months_until_eol()->y > 0) {{ $asset->months_until_eol()->y }}
|
|
|
|
{{ trans('general.years') }},
|
|
|
|
@endif
|
|
|
|
|
|
|
|
{{ $asset->months_until_eol()->m }}
|
|
|
|
{{ trans('general.months') }}
|
2016-08-16 18:49:54 -07:00
|
|
|
)
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
|
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
@if ($asset->expected_checkin!='')
|
|
|
|
<tr>
|
|
|
|
<td>{{ trans('admin/hardware/form.expected_checkin') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ $asset->expected_checkin }}
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
|
|
|
<tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
<td>{{ trans('admin/hardware/form.notes') }}</td>
|
2016-07-27 20:24:09 -07:00
|
|
|
<td> {!! nl2br(e($asset->notes)) !!}</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
@if ($asset->created_at!='')
|
2016-06-21 17:19:46 -07:00
|
|
|
<tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
<td>{{ trans('general.created_at') }}</td>
|
|
|
|
<td>
|
|
|
|
{{ $asset->created_at->format('F j, Y h:iA') }}
|
|
|
|
</td>
|
2016-06-21 17:19:46 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
</tbody>
|
2016-08-16 18:49:54 -07:00
|
|
|
</table>
|
|
|
|
</div> <!-- /table-responsive -->
|
|
|
|
</div><!-- /col -->
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-4">
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-06-21 12:20:22 -07:00
|
|
|
@if ($asset->image)
|
2016-08-30 07:20:07 -07:00
|
|
|
<img src="{{ config('app.url') }}/uploads/assets/{{{ $asset->image }}}" class="assetimg img-responsive">
|
2016-08-16 18:49:54 -07:00
|
|
|
@elseif ($asset->model->image!='')
|
2016-08-30 07:20:07 -07:00
|
|
|
<img src="{{ config('app.url') }}/uploads/models/{{{ $asset->model->image }}}" class="assetimg img-responsive">
|
2016-06-21 12:20:22 -07:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (App\Models\Setting::getSettings()->qr_code=='1')
|
2016-08-23 16:04:22 -07:00
|
|
|
<img src="{{ config('app.url') }}/hardware/{{ $asset->id }}/qr_code" class="img-thumbnail pull-right" style="height: 100px; width: 100px; margin-right: 10px;">
|
2016-06-21 12:20:22 -07:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@if (($asset->assigneduser) && ($asset->assigned_to > 0) && ($asset->deleted_at==''))
|
2016-03-25 01:18:05 -07:00
|
|
|
<h4>{{ trans('admin/hardware/form.checkedout_to') }}</h4>
|
2016-08-16 18:49:54 -07:00
|
|
|
<p>
|
|
|
|
<img src="{{ $asset->assigneduser->gravatar() }}" class="user-image-inline" alt="{{ $asset->assigneduser->fullName() }}">
|
|
|
|
<a href="{{ route('view/user', $asset->assigned_to) }}">{{ $asset->assigneduser->fullName() }}</a>
|
|
|
|
</p>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<ul class="list-unstyled">
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@if ((isset($asset->assigneduser->email)) && ($asset->assigneduser->email!=''))
|
|
|
|
<li><i class="fa fa-envelope-o"></i> <a href="mailto:{{ $asset->assigneduser->email }}">{{ $asset->assigneduser->email }}</a></li>
|
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@if ((isset($asset->assigneduser->phone)) && ($asset->assigneduser->phone!=''))
|
|
|
|
<li><i class="fa fa-phone"></i> {{ $asset->assigneduser->phone }}</li>
|
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@if (isset($asset->userloc))
|
|
|
|
<li>{{ $asset->userloc->name }}</li>
|
|
|
|
<li>{{ $asset->userloc->address }}
|
|
|
|
@if ($asset->userloc->address2!='')
|
|
|
|
{{ $asset->userloc->address2 }}
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
</li>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<li>{{ $asset->userloc->city }}
|
|
|
|
@if (($asset->userloc->city!='') && ($asset->userloc->state!=''))
|
|
|
|
,
|
|
|
|
@endif
|
|
|
|
{{ $asset->userloc->state }} {{ $asset->userloc->zip }}
|
|
|
|
</li>
|
|
|
|
|
|
|
|
@elseif (isset($asset->assetloc))
|
|
|
|
<li>{{ $asset->assetloc->name }}</li>
|
|
|
|
<li>{{ $asset->assetloc->address }}
|
|
|
|
@if ($asset->assetloc->address2!='')
|
|
|
|
{{ $asset->assetloc->address2 }}
|
|
|
|
@endif
|
|
|
|
</li>
|
2016-08-02 17:03:15 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<li>
|
|
|
|
{{ $asset->assetloc->city }}
|
|
|
|
@if (($asset->assetloc->city!='') && ($asset->assetloc->state!=''))
|
|
|
|
,
|
|
|
|
@endif
|
|
|
|
{{ $asset->assetloc->state }} {{ $asset->assetloc->zip }}
|
|
|
|
</li>
|
2016-08-02 17:03:15 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
|
|
|
</ul>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
|
|
|
</div> <!-- div.col-md-4 -->
|
|
|
|
</div><!-- /row -->
|
|
|
|
</div><!-- /.tab-pane asset details -->
|
2016-08-02 17:03:15 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="tab-pane fade" id="software">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<!-- Licenses assets table -->
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@if (count($asset->licenses) > 0)
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="col-md-4">{{ trans('general.name') }}</th>
|
|
|
|
<th class="col-md-4"><span class="line"></span>{{ trans('admin/licenses/form.license_key') }}</th>
|
|
|
|
<th class="col-md-1"><span class="line"></span>{{ trans('table.actions') }}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach ($asset->licenseseats as $seat)
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{ route('view/license', $seat->license->id) }}">{{ $seat->license->name }}</a></td>
|
|
|
|
<td>{{ $seat->license->serial }}</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ route('checkin/license', $seat->id) }}" class="btn-flat info btn-sm">{{ trans('general.checkin') }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
@else
|
|
|
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="alert alert-info alert-block">
|
|
|
|
<i class="fa fa-info-circle"></i>
|
|
|
|
{{ trans('general.no_results') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div><!-- /col -->
|
|
|
|
</div> <!-- row -->
|
|
|
|
</div> <!-- /.tab-pane software -->
|
|
|
|
<div class="tab-pane fade" id="components">
|
|
|
|
<!-- checked out assets table -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
@if(count($asset->components) > 0)
|
|
|
|
<table class="table table-striped">
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
<?php $totalCost = 0; ?>
|
|
|
|
@foreach ($asset->components as $component)
|
|
|
|
@if (is_null($component->deleted_at))
|
2016-05-18 19:26:50 -07:00
|
|
|
<tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
<td><a href="{{ route('view/component', $component->id) }}">{{ $component->name }}</a></td>
|
2016-05-18 19:26:50 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td colspan="7" class="text-right">{{ $use_currency.$totalCost }}</td>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
@else
|
|
|
|
<div class="alert alert-info alert-block">
|
|
|
|
<i class="fa fa-info-circle"></i>
|
|
|
|
{{ trans('general.no_results') }}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2016-05-18 19:26:50 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-16 18:49:54 -07:00
|
|
|
</div> <!-- /.tab-pane components -->
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="tab-pane fade" id="maintenances">
|
|
|
|
<div class="row">
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-12">
|
|
|
|
<h6>{{ trans('general.asset_maintenances') }}
|
|
|
|
[ <a href="{{ route('create/asset_maintenances', $asset->id) }}">{{ trans('button.add') }}</a> ]
|
|
|
|
</h6>
|
|
|
|
|
|
|
|
<!-- Asset Maintenance table -->
|
|
|
|
@if (count($asset->assetmaintenances) > 0)
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
2016-03-25 01:18:05 -07:00
|
|
|
<tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
<th>{{ trans('admin/asset_maintenances/table.supplier_name') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/form.title') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/form.asset_maintenance_type') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/form.start_date') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/form.completion_date') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/form.notes') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/table.is_warranty') }}</th>
|
|
|
|
<th>{{ trans('admin/asset_maintenances/form.cost') }}</th>
|
|
|
|
<th>{{ trans('general.admin') }}</th>
|
|
|
|
<th>{{ trans('table.actions') }}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php $totalCost = 0; ?>
|
2016-06-22 17:04:47 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@foreach ($asset->assetmaintenances as $assetMaintenance)
|
|
|
|
@if (is_null($assetMaintenance->deleted_at))
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{ route('view/supplier', $assetMaintenance->supplier_id) }}">{{ $assetMaintenance->supplier->name }}</a></td>
|
|
|
|
<td>{{ $assetMaintenance->title }}</td>
|
|
|
|
<td>{{ $assetMaintenance->asset_maintenance_type }}</td>
|
|
|
|
<td>{{ $assetMaintenance->start_date }}</td>
|
|
|
|
<td>{{ $assetMaintenance->completion_date }}</td>
|
|
|
|
<td>{{ $assetMaintenance->notes }}</td>
|
|
|
|
<td>{{ $assetMaintenance->is_warranty ? trans('admin/asset_maintenances/message.warranty') : trans('admin/asset_maintenances/message.not_warranty') }}</td>
|
|
|
|
<td class="text-right"><nobr>{{ $use_currency.$assetMaintenance->cost }}</nobr></td>
|
|
|
|
<td>
|
2016-06-22 17:04:47 -07:00
|
|
|
@if ($assetMaintenance->admin)
|
2016-08-16 18:49:54 -07:00
|
|
|
<a href="{{ config('app.url') }}/admin/users/{{ $assetMaintenance->admin->id }}/view">{{ $assetMaintenance->admin->fullName() }}</a>
|
2016-06-22 17:04:47 -07:00
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
<?php $totalCost += $assetMaintenance->cost; ?>
|
2016-08-16 18:49:54 -07:00
|
|
|
<td>
|
|
|
|
<a href="{{ route('update/asset_maintenance', $assetMaintenance->id) }}" class="btn btn-warning btn-sm"><i class="fa fa-pencil icon-white"></i></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td colspan="8" class="text-right">{{ is_numeric($totalCost) ? $use_currency.number_format($totalCost, 2) : $totalCost }}</td>
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
@else
|
|
|
|
<div class="alert alert-info alert-block">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-info-circle"></i>
|
|
|
|
{{ trans('general.no_results') }}
|
2016-08-16 18:49:54 -07:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div> <!-- /.col-md-12 -->
|
|
|
|
</div> <!-- /.row -->
|
|
|
|
</div> <!-- /.tab-pane maintenances -->
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<div class="tab-pane fade" id="history">
|
|
|
|
<!-- checked out assets table -->
|
|
|
|
<div class="row">
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-12">
|
|
|
|
<table class="table table-hover table-fixed break-word">
|
|
|
|
<thead>
|
2016-03-25 01:18:05 -07:00
|
|
|
<tr>
|
|
|
|
<th class="col-md-3">{{ trans('general.date') }}</th>
|
|
|
|
<th class="col-md-2"><span class="line"></span>{{ trans('general.admin') }}</th>
|
|
|
|
<th class="col-md-2"><span class="line"></span>{{ trans('table.actions') }}</th>
|
|
|
|
<th class="col-md-2"><span class="line"></span>{{ trans('general.user') }}</th>
|
|
|
|
<th class="col-md-3"><span class="line"></span>{{ trans('general.notes') }}</th>
|
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@if (count($asset->assetlog) > 0)
|
|
|
|
@foreach ($asset->assetlog as $log)
|
|
|
|
<tr>
|
|
|
|
<td>{{ $log->created_at }}</td>
|
|
|
|
<td>
|
|
|
|
@if (isset($log->adminlog))
|
|
|
|
{{ $log->adminlog->fullName() }}
|
|
|
|
@else
|
|
|
|
Deleted Admin
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>{{ $log->action_type }}</td>
|
|
|
|
<td>
|
2016-03-25 01:18:05 -07:00
|
|
|
@if ((isset($log->checkedout_to)) && ($log->checkedout_to!=0) && ($log->checkedout_to!=''))
|
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@if ($log->userlog)
|
|
|
|
|
|
|
|
@if ($log->userlog->deleted_at=='')
|
|
|
|
<a href="{{ route('view/user', $log->checkedout_to) }}">
|
|
|
|
{{ $log->userlog->fullName() }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
@else
|
|
|
|
<del>{{ $log->userlog->fullName() }}</del>
|
|
|
|
@endif
|
|
|
|
@else
|
|
|
|
Deleted User
|
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2016-03-25 01:18:05 -07:00
|
|
|
@if ($log->note) {{ $log->note }}
|
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
</td>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@endforeach
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
2016-08-16 18:49:54 -07:00
|
|
|
<!-- Add a "created asset" row to the log list. This isn't an official log entry.-->
|
2016-03-25 01:18:05 -07:00
|
|
|
<tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
<td>{{ $asset->created_at }}</td>
|
|
|
|
<td>
|
|
|
|
@if ($asset->adminuser)
|
|
|
|
{{ $asset->adminuser->fullName() }}
|
|
|
|
@else
|
|
|
|
{{ trans('general.unknown_admin') }}
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>{{ trans('general.created_asset') }}</td>
|
|
|
|
<td></td> <!-- User -->
|
|
|
|
<td></td> <!-- Notes -->
|
2016-03-25 01:18:05 -07:00
|
|
|
</tr>
|
2016-08-16 18:49:54 -07:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div> <!-- /.row -->
|
|
|
|
</div> <!-- /.tab-pane history -->
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="tab-pane fade" id="files">
|
|
|
|
<div class="row">
|
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
{{ Form::open([
|
|
|
|
'method' => 'POST',
|
|
|
|
'route' => ['upload/asset', $asset->id],
|
|
|
|
'files' => true, 'class' => 'form-horizontal' ]) }}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-2">
|
|
|
|
<span class="btn btn-default btn-file">Browse for file...
|
|
|
|
{{ Form::file('assetfile[]', ['multiple' => 'multiple']) }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-7">
|
|
|
|
{{ Form::text('notes', Input::old('notes', Input::old('notes')), array('class' => 'form-control','placeholder' => 'Notes')) }}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
<button type="submit" class="btn btn-primary">{{ trans('button.upload') }}</button>
|
|
|
|
</div>
|
2016-05-19 23:12:27 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-12">
|
|
|
|
<p>{{ trans('admin/hardware/general.filetype_info') }}</p>
|
|
|
|
<hr>
|
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
{{ Form::close() }}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<div class="col-md-12">
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
<table class="table table-hover">
|
2016-03-25 01:18:05 -07:00
|
|
|
<thead>
|
2016-08-16 18:49:54 -07:00
|
|
|
<tr>
|
|
|
|
<th class="col-md-4">{{ trans('general.notes') }}</th>
|
|
|
|
<th class="col-md-2"></th>
|
|
|
|
<th class="col-md-4"><span class="line"></span>{{ trans('general.file_name') }}</th>
|
|
|
|
<th class="col-md-2"></th>
|
|
|
|
<th class="col-md-2"></th>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2016-08-16 18:49:54 -07:00
|
|
|
@if (count($asset->uploads) > 0)
|
|
|
|
@foreach ($asset->uploads as $file)
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
@if ($file->note)
|
|
|
|
{{ $file->note }}
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ( \App\Helpers\Helper::checkUploadIsImage($file->get_src('assets')))
|
|
|
|
<a href="../{{ $asset->id }}/showfile/{{ $file->id }}" data-toggle="lightbox" data-type="image"><img src="../{{ $asset->id }}/showfile/{{ $file->id }}"" class="img-thumbnail" style="max-width: 50px;"></a>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $file->filename }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($file->filename)
|
|
|
|
<a href="{{ route('show/assetfile', [$asset->id, $file->id]) }}" class="btn btn-default">{{ trans('general.download') }}</a>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a class="btn delete-asset btn-danger btn-sm" href="{{ route('delete/assetfile', [$asset->id, $file->id]) }}"><i class="fa fa-trash icon-white"></i></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
@else
|
|
|
|
<tr>
|
|
|
|
<td colspan="4">
|
|
|
|
{{ trans('general.no_results') }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-16 18:49:54 -07:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
</tbody>
|
2016-08-16 18:49:54 -07:00
|
|
|
</table>
|
|
|
|
</div> <!-- /.col-md-12 -->
|
|
|
|
</div> <!-- /.row -->
|
|
|
|
</div> <!-- /.tab-pane files -->
|
|
|
|
</div> <!-- /. tab-content -->
|
|
|
|
</div> <!-- /.nav-tabs-custom -->
|
|
|
|
</div> <!-- /. col-md-12 -->
|
|
|
|
</div> <!-- /. row -->
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
@section('moar_scripts')
|
|
|
|
<script>
|
2016-03-25 20:38:27 -07:00
|
|
|
$(document).delegate('*[data-toggle="lightbox"]', 'click', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
$(this).ekkoLightbox();
|
|
|
|
});
|
2016-03-25 01:18:05 -07:00
|
|
|
</script>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@stop
|