@extends('layouts.app') @section('breadcrumb') @stop @section('content')
@if(Laratrust::isAbleTo('create-department'))

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

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

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

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