@extends('layouts.app')
@push('datatable-styles')
    @include('sections.datatable_css')
    
@endpush
@php
    $addDepartmentPermission = user()->permission('add_department');
@endphp
@section('filter-section')
    
        
        
        
        
        
            
                @lang('app.clearFilters')
            
        
        
        
        
            
                
                
                    
                        
                    
                 
             
        
        
    
@endsection
@section('content')
    
    
        
        
            
                @if ($addDepartmentPermission == 'all')
                    
                        @lang('app.add') @lang('modules.department.title')
                    
                @endif
            
            
                
                    
                
            
            
         
        
        
            {!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
        
        
     
    
@endsection
@push('scripts')
    @include('sections.datatable_js')
    
@endpush