@extends('layouts.main') @section('content')
@if(!empty($shows)) @foreach($shows as $show) @php if(empty($show->id)) continue; @endphp

{{ $show->title }} Ticket

{{ $show->description }}

Price: €{{ $show->price }}

@endforeach @else

No Shows

There are no shows.

@endif
@endsection