@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.consumables') }} @parent @stop @section('header_right') @can('create', \App\Models\Consumable::class) {{ trans('general.create') }} @endcan {{ Form::open([ 'method' => 'post', 'route' => ['consumables.export'], 'class' => 'form-horizontal', 'style' => 'display: inline;' ]) }} {{ csrf_field() }} {{ Form::close() }} @stop {{-- Page content --}} @section('content')
@stop @section('moar_scripts') @include ('partials.bootstrap-table', ['exportFile' => 'consumables-export', 'search' => true,'showFooter' => true, 'columns' => \App\Presenters\ConsumablePresenter::dataTableLayout()]) @stop