@extends('layouts.profile') @section('content')
@if(Auth::user()->hasShows()) @foreach(Auth::user()->getShows() as $show)

{{ $show->title }}

{!! $show->description !!}

@php($time = strtotime($show->date))

Date: {{ date('d-m-Y', $time) }} at {{ date('H:m', $time) }}

Seat: {{ $show->seat }}

Voucher: {{ $show->voucher }}

@endforeach @else

No Shows

You have no tickets for shows.

@endif
@endsection