@if ($stations->count() > 0)
@foreach ($stations as $key => $station) @endforeach
# Nom de la station Adresse Gérant Actions
{{ $key + 1 }} {{ $station->name }} {{ $station->address }} {{ $station->gerant->pseudo ?? $station->gerant->first_name . ' ' . $station->gerant->last_name }}
@else
Aucune donnée disponible.
@endif