@extends('layouts.app') @section('breadcrumb') @stop @section('content')
{{--

{!! trans('messages.filter') !!} {!! Str::plural(trans('messages.adhoc')) !!}

{!! Form::open(['url'=>'filter', 'id'=>'adhoc-filter-form', 'data-no-form-clear'=>1]) !!}
{!! Form::close() !!}
--}} @if(Laratrust::isAbleTo('create-adhoc'))

{!! trans('messages.add_new') !!} {!! trans('messages.adhoc') !!}

{!! Form::open(['route'=>'adhoc.store', 'role'=>'form', 'class'=>'adhoc-form', 'id'=>'adhoc-form']) !!} @include('adhoc._form') {!! Form::close() !!}
@endif

{!! trans('messages.list_all') !!} {!! Str::plural(trans('messages.adhoc')) !!}

{{-- --}} @if(Laratrust::isAbleTo('create-adhoc')) @endif
@include('global.datatable',['table' => $table_data['adhoc-table']])
@stop