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

GESTION DES GARES

@if ($message = Session::get('success'))
{{ $message }}
@endif
Informations...
@csrf
LISTE DES GARES
@foreach($allgares as $gare) @endforeach
# NOM GARE RESPONSABLE CONTACT COMMUNE LATITUDE LONGITUDE ACTION
{{ $gare->nom_gare }} {{ $gare->personne->nom }} - {{ $gare->personne->prenom }} {{ $gare->contact }} {{ $gare->commune->libelle }} {{ $gare->latitude }} {{ $gare->longitide }} {{-- Modal POUR EDITER --}}
@csrf {{--@method('PUT')--}}
{{-- Modal POUR EDITER--}} {{-- Modal POUR AJOUT LIGNE --}}
@csrf {{--@method('PUT')--}}
{{-- Modal POUR EDITER--}} {{-- Modal POUR LISTE --}}
@csrf
{{-- Modal POUR LISTE--}}
@endsection