@extends('layouts.admin.app') @section('title',\App\Utils\translate('departement_list')) @push('css_or_js') @endpush @section('content')

{{\App\Utils\translate('departement_list')}} {{$departements->total()}}

@foreach($departements as $key=>$departement) @endforeach
{{\App\Utils\translate('#')}} {{\App\Utils\translate('name')}} {{\App\Utils\translate('description')}} {{\App\Utils\translate('action')}}
{{ $departements->firstItem()+$key }} {{ $departement->name }} {{ $departement->description }}
@csrf @method('delete')
{!! $departements->links() !!}
@if(count($departements)==0)
{{\App\Utils\translate('Image Description')}}

{{ \App\Utils\translate('No_data_to_show')}}

@endif
@endsection