@extends('layouts.frontend') @section('content')
@foreach($stations as $station)
@if($station->lights->light == 'green')
@elseif($station->lights->light == 'yellow')
@elseif($station->lights->light == 'blue')
@elseif($station->lights->light == 'red')
@else
@endif
{{$station->name}}
Altitudine: {{$station->altitude}} m.
Regione: {{$station->region_description}}
@endforeach
@endsection @section('footer') @include('footer') @endsection