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

REGISTRE

@if ($message = Session::get('success'))
{{ $message }}
@endif
LISTE DES LIGNES
@foreach($listLignes as $ligne) @endforeach
# NOM LIGNE VILLE DEPART VILLE ARRIVEE COÜT GARE RESPONSABLE
{{ $ligne->id }} {{ $ligne->nom_ligne }} {{ $ligne->ville_deb}} {{ $ligne->ville_fin }} {{ $ligne->distance }} {{ $ligne->gare->nom_gare }} {{ $ligne->personne->nom }} - {{ $ligne->personne->prenom }} {{-- Modal POUR AJOUT LIGNE --}} {{-- Modal POUR EDITER--}}
@endsection