@extends('layouts.app') @section('breadcrumb') @stop @section('content')
@if(Laratrust::isAbleTo('list-monthly-report'))

{!! trans('messages.add_new') !!} {!! trans('messages.monthly').' '.trans('messages.report') !!}

{!! Form::open(['route' => 'monthly-report.store','role' => 'form', 'class'=>'monthly-report-form','id' => 'monthly-report-form','data-file-upload' => '.file-uploader']) !!} @include('monthly_report._form') {!! Form::close() !!}
@endif

{!! trans('messages.filter') !!} {!! trans('messages.report') !!}

{!! Form::open(['url' => 'filter','id' => 'monthly-report-filter-form','data-no-form-clear' => 1]) !!}
{!! Form::label('location_id',trans('messages.location'),[])!!} {!! Form::select('location_id[]',$locations,'',['class'=>'form-control show-tick', 'title'=>trans('messages.select_one'), 'id'=>'location_id', 'multiple'=>'multiple', 'data-actions-box'=>'true'])!!}
{!! Form::close() !!}

{!! trans('messages.list_all') !!} {!! trans('messages.monthly_report') !!}

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