@extends('app')
@section('head')
@stop
@section('content')

@if(count($shows)>0)
Upcoming Shows
| Date |
City |
Venue |
@foreach ($shows as $show)
| {{$show->date->format('M d')}} |
{{$show->location}} |
{{$show->venue}} |
@endforeach
@endif
@stop
@section("footer")
@stop