@extends('layouts.index') @section('content')

GESTION DES RESPONSABLES DE GARE

@if ($message = Session::get('success'))
{{ $message }}
@endif
Informations...
@csrf
LISTE DES RESPONSABLES
@foreach($allPersonnes as $person) @endforeach
# NOM PRENOM(S) CONTACT SEXE ADRESSE ACTION
{{ $person->nom }} {{ $person->prenom}} {{ $person->telephone }} {{ $person->sexe}} {{ $person->adresse }} {{-- Modal POUR EDITER --}}
@csrf {{--@method('PUT')--}}
{{-- Modal POUR EDITER--}}
@endsection