@extends('layouts.admin') @section('titre') Gestion des département @endsection @section('header') @endsection @section('content')

GESTION DES DEPARTEMENTS

@forelse($departements as $key => $value) @empty @endforelse
NOM DESCRIPTION PROVINCE ACTIONS
{{ $key+1 }} {{ $value->name }} {{ $value->description }} {{ $value->province->name }}
Aucune donnée trouvée !
@endsection @section('footer') @endsection