mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
70 lines
3.4 KiB
PHP
Executable file
70 lines
3.4 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('general.locations') }}
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
@can('create', \App\Models\Location::class)
|
|
<a href="{{ route('locations.create') }}" class="btn btn-primary pull-right">
|
|
{{ trans('general.create') }}</a>
|
|
@endcan
|
|
@stop
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-default">
|
|
<div class="box-body">
|
|
<div class="table-responsive">
|
|
<table
|
|
name="locations"
|
|
class="table table-striped snipe-table"
|
|
id="table"
|
|
data-url="{{ route('api.locations.index') }}"
|
|
data-cookie="true"
|
|
data-show-export="true"
|
|
data-click-to-select="true"
|
|
data-cookie-id-table="locationsTable-{{ config('version.hash_version') }}">
|
|
<thead>
|
|
<tr>
|
|
<th data-sortable="true" data-field="id" data-visible="false">{{ trans('general.id') }}</th>
|
|
<th data-sortable="true" data-formatter="locationsLinkFormatter" data-field="name" data-searchable="true">{{ trans('admin/locations/table.name') }}</th>
|
|
<th data-sortable="true" data-field="image" data-visible="false" data-formatter="imageFormatter">{{ trans('general.image') }}</th>
|
|
<th data-sortable="true" data-field="parent" data-formatter="locationsLinkObjFormatter">{{ trans('admin/locations/table.parent') }}</th>
|
|
<th data-searchable="false" data-sortable="true" data-field="assets_count">{{ trans('admin/locations/table.assets_rtd') }}</th>
|
|
<th data-searchable="false" data-sortable="true" data-field="assigned_assets_count">{{ trans('admin/locations/table.assets_checkedout') }}</th>
|
|
<th data-searchable="false" data-sortable="true" data-field="users_count">{{ trans('general.people') }}</th>
|
|
<th data-searchable="true" data-sortable="true" data-field="currency">{{ trans('general.currency') }}</th>
|
|
<th data-searchable="true" data-sortable="true" data-field="address">{{ trans('admin/locations/table.address') }}</th>
|
|
<th data-searchable="true" data-sortable="true" data-field="city">{{ trans('admin/locations/table.city') }}
|
|
</th>
|
|
<th data-searchable="true" data-sortable="true" data-field="state">
|
|
{{ trans('admin/locations/table.state') }}
|
|
</th>
|
|
<th data-searchable="true" data-sortable="true" data-field="zip">
|
|
{{ trans('admin/locations/table.zip') }}
|
|
</th>
|
|
<th data-searchable="true" data-sortable="true" data-field="country">
|
|
{{ trans('admin/locations/table.country') }}
|
|
</th>
|
|
<th data-sortable="true" data-formatter="usersLinkObjFormatter" data-field="manager" data-searchable="true">{{ trans('admin/users/table.manager') }}</th>
|
|
<th data-switchable="false" data-formatter="locationsActionsFormatter" data-searchable="false" data-sortable="false" data-field="actions">{{ trans('table.actions') }}</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table', ['exportFile' => 'locations-export', 'search' => true])
|
|
|
|
@stop
|