@if (session('msg'))
{{ session('msg') }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Event: {{$Event->title}}

Live Link: {{url('/'.$Event->id.'/live')}}

Tickets

@if (count($Event->tickets) > 0)
@foreach ($Event->tickets as $ticket) @endforeach
Title actions
{{$ticket->title}}
@else

No Tickets!

@endif

Donation Levels

@if (count($Event->stories) > 0)
@foreach ($Event->stories as $stories) @endforeach
Title actions
${{$stories->price}}
@else

No Donation Levels!

@endif
@endsection