2017-05-23 02:50:27 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
|
|
|
|
{{ $department->name }}
|
|
|
|
{{ trans('general.department') }}
|
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('header_right')
|
|
|
|
<a href="{{ route('departments.edit', ['department' => $department->id]) }}" class="btn btn-sm btn-primary pull-right">{{ trans('admin/departments/table.update') }} </a>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="box box-default">
|
|
|
|
<div class="box-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="table table-responsive">
|
2018-02-16 13:22:55 -08:00
|
|
|
|
2017-05-23 02:50:27 -07:00
|
|
|
<table
|
2018-02-16 13:22:55 -08:00
|
|
|
data-columns="{{ \App\Presenters\UserPresenter::dataTableLayout() }}"
|
|
|
|
data-cookie-id-table="departmentsUsersTable"
|
|
|
|
data-pagination="true"
|
|
|
|
data-id-table="departmentsUsersTable"
|
|
|
|
data-search="true"
|
|
|
|
data-show-footer="true"
|
|
|
|
data-side-pagination="server"
|
|
|
|
data-show-columns="true"
|
|
|
|
data-show-export="true"
|
|
|
|
data-show-refresh="true"
|
|
|
|
data-sort-order="asc"
|
|
|
|
id="departmentsUsersTable"
|
2017-05-23 02:50:27 -07:00
|
|
|
class="table table-striped snipe-table"
|
|
|
|
data-url="{{ route('api.users.index',['department_id'=> $department->id]) }}"
|
2018-02-16 13:22:55 -08:00
|
|
|
data-export-options='{
|
|
|
|
"fileName": "export-departments-{{ str_slug($department->name) }}-{{ date('Y-m-d') }}",
|
|
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
|
|
}'>
|
|
|
|
|
2017-05-23 02:50:27 -07:00
|
|
|
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('moar_scripts')
|
|
|
|
@include ('partials.bootstrap-table',
|
|
|
|
['exportFile' => 'departments-users-export',
|
|
|
|
'search' => true,
|
|
|
|
'columns' => \App\Presenters\UserPresenter::dataTableLayout()
|
|
|
|
])
|
|
|
|
|
|
|
|
@stop
|