@extends('layouts.main') @section('content')
@if(!empty($shows))
@foreach($shows as $show) @php if(empty($show->id)) continue; @endphp
@component('components.show', ['show' => $show, 'style' => 'style="height: 100%"']) Price: €{{ $show->price }} Buy Ticket @endcomponent
@endforeach
@else @component('components.panel', ['title' => 'No Shows'])

There are no shows.

@endcomponent @endif
@endsection