mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
72 lines
2.3 KiB
PHP
72 lines
2.3 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Web site Title --}}
|
|
@section('title')
|
|
Kits
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<a href="{{ route('kits.create') }}" class="btn btn-primary text-right">{{ trans('general.create') }}</a>
|
|
@stop
|
|
|
|
|
|
{{-- 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-cookie-id-table="kitsTable"
|
|
data-columns="{{ \App\Presenters\PredefinedKitPresenter::dataTableLayout() }}"
|
|
data-pagination="true"
|
|
data-search="true"
|
|
data-side-pagination="server"
|
|
data-show-columns="true"
|
|
data-show-export="true"
|
|
data-show-refresh="true"
|
|
data-sort-order="asc"
|
|
data-sort-name="name"
|
|
id="kitsTable"
|
|
class="table table-striped snipe-table"
|
|
data-url="{{ route('api.kits.index') }}"
|
|
data-export-options='{
|
|
"fileName": "export-kits-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
</table>
|
|
</div>
|
|
{{-- <h2>Test</h2>
|
|
<div class="table-responsive">
|
|
<table
|
|
data-cookie-id-table="kitModelsTable"
|
|
data-columns="{{ \App\Presenters\PredefinedKitPresenter::dataTableModels() }}"
|
|
data-pagination="true"
|
|
data-search="true"
|
|
data-side-pagination="server"
|
|
data-show-columns="true"
|
|
data-show-export="true"
|
|
data-show-refresh="true"
|
|
data-sort-order="asc"
|
|
data-sort-name="name"
|
|
id="kitModelsTable"
|
|
class="table table-striped snipe-table"
|
|
data-url="{{ route('api.kits.models.index', 1) }}"
|
|
data-export-options='{
|
|
"fileName": "export-kit-models-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
</table>
|
|
</div> --}}
|
|
</div> <!--.box-body-->
|
|
</div> <!-- /.box.box-default-->
|
|
</div> <!-- .col-md-12-->
|
|
</div>
|
|
@stop
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table', ['exportFile' => 'kits-export', 'search' => true])
|
|
@stop
|