mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
b2de0d4ade
Signed-off-by: snipe <snipe@snipe.net>
60 lines
1.6 KiB
PHP
Executable file
60 lines
1.6 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('general.categories') }}
|
|
@parent
|
|
@stop
|
|
|
|
|
|
@section('header_right')
|
|
<a href="{{ route('categories.create') }}" class="btn btn-primary pull-right">
|
|
{{ trans('general.create') }}</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="table-responsive">
|
|
|
|
<table
|
|
data-columns="{{ \App\Presenters\CategoryPresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="categoryTable"
|
|
data-pagination="true"
|
|
data-id-table="categoryTable"
|
|
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="categoryTable"
|
|
class="table table-striped snipe-table"
|
|
data-url="{{ route('api.categories.index') }}"
|
|
data-export-options='{
|
|
"fileName": "export-categories-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
</table>
|
|
</div>
|
|
</div><!-- /.box-body -->
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table',
|
|
['exportFile' => 'category-export',
|
|
'search' => true,
|
|
'columns' => \App\Presenters\CategoryPresenter::dataTableLayout()
|
|
])
|
|
@stop
|
|
|