mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
104 lines
4.3 KiB
PHP
104 lines
4.3 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
|
|
{{ $category->name }}
|
|
{{ ucwords($category_type_route) }}
|
|
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<div class="btn-group pull-right">
|
|
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">{{ trans('button.actions') }}
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu">
|
|
<li><a href="{{ route('categories.edit', ['category' => $category->id]) }}">{{ trans('admin/categories/general.edit') }}</a></li>
|
|
<li><a href="{{ route('categories.create') }}">{{ trans('general.create') }}</a></li>
|
|
</ul>
|
|
</div>
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-default">
|
|
<div class="box-body">
|
|
|
|
<table
|
|
|
|
@if ($category->category_type=='asset')
|
|
|
|
data-columns="{{ \App\Presenters\AssetPresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="categoryAssetsTable"
|
|
id="categoryAssetsTable"
|
|
data-id-table="categoryAssetsTable"
|
|
data-export-options='{
|
|
"fileName": "export-{{ str_slug($category->name) }}-assets-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'
|
|
@elseif ($category->category_type=='accessory')
|
|
data-columns="{{ \App\Presenters\AccessoryPresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="categoryAccessoryTable"
|
|
id="categoryAccessoryTable"
|
|
data-id-table="categoryAccessoryTable"
|
|
data-export-options='{
|
|
"fileName": "export-{{ str_slug($category->name) }}-accessories-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'
|
|
@elseif ($category->category_type=='consumable')
|
|
data-columns="{{ \App\Presenters\ConsumablePresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="categoryConsumableTable"
|
|
id="categoryConsumableTable"
|
|
data-id-table="categoryConsumableTable"
|
|
data-export-options='{
|
|
"fileName": "export-{{ str_slug($category->name) }}-consumables-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'
|
|
@elseif ($category->category_type=='component')
|
|
data-columns="{{ \App\Presenters\ComponentPresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="categoryCompomnentTable"
|
|
id="categoryCompomnentTable"
|
|
data-id-table="categoryCompomnentTable"
|
|
data-export-options='{
|
|
"fileName": "export-{{ str_slug($category->name) }}-components-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'
|
|
@elseif ($category->category_type=='license')
|
|
data-columns="{{ \App\Presenters\LicensePresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="categoryLicenseTable"
|
|
id="categoryLicenseTable"
|
|
data-id-table="categoryLicenseTable"
|
|
data-export-options='{
|
|
"fileName": "export-{{ str_slug($category->name) }}-licenses-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'
|
|
@endif
|
|
|
|
data-pagination="true"
|
|
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"
|
|
class="table table-striped snipe-table"
|
|
data-url="{{ route('api.'.$category_type_route.'.index',['category_id'=> $category->id]) }}">
|
|
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table')
|
|
@stop
|