2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
|
|
|
|
{{ $accessory->name }}
|
|
|
|
{{ trans('general.accessory') }}
|
2016-11-17 19:57:53 -08:00
|
|
|
@if ($accessory->model_number!='')
|
|
|
|
({{ $accessory->model_number }})
|
|
|
|
@endif
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Right header --}}
|
|
|
|
@section('header_right')
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('manage', \App\Models\Accessory::class)
|
2016-08-02 00:54:38 -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-12-27 12:03:47 -08:00
|
|
|
@if ($accessory->assigned_to != '')
|
|
|
|
@can('checkin', \App\Models\Accessory::class)
|
|
|
|
<li role="presentation">
|
|
|
|
<a href="{{ route('checkin/accessory', $accessory->id) }}">{{ trans('admin/accessories/general.checkin') }}</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
|
|
|
@else
|
|
|
|
@can('checkout', \App\Models\Accessory::class)
|
|
|
|
<li role="presentation">
|
|
|
|
<a href="{{ route('checkout/accessory', $accessory->id) }}">{{ trans('admin/accessories/general.checkout') }}</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
|
|
|
@endif
|
|
|
|
@can('update', \App\Models\Accessory::class)
|
|
|
|
<li role="presentation">
|
|
|
|
<a href="{{ route('accessories.edit', $accessory->id) }}">{{ trans('admin/accessories/general.edit') }}</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-08-02 00:54:38 -07:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
|
|
|
|
|
|
|
<div class="box box-default">
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="box-body">
|
|
|
|
<div class="table table-responsive">
|
2018-02-16 13:22:55 -08:00
|
|
|
|
|
|
|
<table
|
|
|
|
data-cookie-id-table="usersTable"
|
|
|
|
data-pagination="true"
|
|
|
|
data-id-table="usersTable"
|
|
|
|
data-search="true"
|
|
|
|
data-side-pagination="server"
|
|
|
|
data-show-columns="true"
|
|
|
|
data-show-export="true"
|
|
|
|
data-show-refresh="true"
|
|
|
|
data-sort-order="asc"
|
|
|
|
id="usersTable"
|
|
|
|
class="table table-striped snipe-table"
|
|
|
|
data-url="{{ route('api.accessories.checkedout', $accessory->id) }}"
|
|
|
|
data-export-options='{
|
|
|
|
"fileName": "export-accessories-{{ str_slug($accessory->name) }}-users-{{ date('Y-m-d') }}",
|
|
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
|
|
}'>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th data-searchable="false" data-formatter="usersLinkFormatter" data-sortable="false" data-field="name">{{ trans('general.user') }}</th>
|
2018-07-31 16:00:38 -07:00
|
|
|
<th data-searchable="false" data-sortable="false" data-field="checkout_notes">{{ trans('general.notes') }}</th>
|
2018-02-16 13:22:55 -08:00
|
|
|
<th data-searchable="false" data-sortable="false" data-field="actions" data-formatter="accessoriesInOutFormatter">{{ trans('table.actions') }}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
</table>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
<!-- side address column -->
|
|
|
|
<div class="col-md-3">
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<h4>{{ trans('admin/accessories/general.about_accessories_title') }}</h4>
|
|
|
|
<p>{{ trans('admin/accessories/general.about_accessories_text') }} </p>
|
|
|
|
<div class="text-center">
|
2016-12-27 12:03:47 -08:00
|
|
|
@can('checkout', \App\Models\Accessory::class)
|
2016-03-25 01:18:05 -07:00
|
|
|
<a href="{{ route('checkout/accessory', $accessory->id) }}" style="margin-right:5px;" class="btn btn-info btn-sm" {{ (($accessory->numRemaining() > 0 ) ? '' : ' disabled') }}>{{ trans('general.checkout') }}</a>
|
2016-12-27 12:03:47 -08:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
@stop
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
@section('moar_scripts')
|
2018-02-16 13:22:55 -08:00
|
|
|
@include ('partials.bootstrap-table')
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|