mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
48 lines
1.2 KiB
PHP
Executable file
48 lines
1.2 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/manufacturers/table.asset_manufacturers') }}
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page title --}}
|
|
@section('header_right')
|
|
<a href="{{ route('manufacturers.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
|
|
name="manufacturers"
|
|
class="table table-striped snipe-table"
|
|
id="table"
|
|
data-url="{{route('api.manufacturers.index') }}"
|
|
data-cookie="true"
|
|
data-click-to-select="true"
|
|
data-cookie-id-table="manufacturersTable-{{ config('version.hash_version') }}">
|
|
|
|
</table>
|
|
</div>
|
|
</div><!-- /.box-body -->
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table',
|
|
['exportFile' => 'manufacturers-export',
|
|
'search' => true,
|
|
'columns' => \App\Presenters\ManufacturerPresenter::dataTableLayout()
|
|
])
|
|
@stop
|