@extends ('default') @section ('content')

All Upcoming Shows

{{--dd($shows['past'][0]['date'])--}} @if(count($shows['future'])>0)
@foreach ($shows['future'] as $show) @endforeach
Date City Venue edit delete
{{$show->date->format('M d, Y')}} {{$show->location}} {{$show->venue}} e x
@else

No upcoming shows

@endif Add a show

All Past Shows

@if(count($shows['past'])>0)
@foreach ($shows['past'] as $show) @endforeach
Date City Venue edit delete
{{$show->date->format('M d, Y')}} {{$show->location}} {{$show->venue}} e x
@else

No past shows available

@endif @stop