@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Departments') }}

@include('common.demo') @include('common.errors')
@if($show_add_button) {{__('Add')}} @endif
@if (!count($departments))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

{{ __('Create new One') }}
@else @if (($imap_enables->value) == '1') @endif @if($show_edit_button || $show_delete_button) @endif @foreach($departments as $department) @if (($imap_enables->value) == '1') @if (($department->imap_status) == true) @else @endif @if (($department->smtp_status) == true) @else @endif @endif @if($show_edit_button || $show_delete_button) @endif @endforeach
{{ __('Name') }} @if($sort_order =='asc') @else @endif {{ __('Email') }} @if($sort_order =='asc') @else @endif {{ __('Description') }} @if($sort_order =='asc') @else @endif {{ __('IMAP status') }} @if($sort_order =='asc') @else @endif {{ __('SMTP status') }} @if($sort_order =='asc') @else @endif
{{$department->name}} {{$department->email}} {{ Str::limit($department->description, 30) }}{{ __('Active') }}{{ __('Inactive') }}{{ __('Active') }}{{ __('Inactive') }} @if($show_edit_button) @endif @if($show_delete_button)
@method('DELETE') @csrf
@endif

@endif
@endsection