@extends('layouts.layout') @section('title', 'Inicio') @section('body')
@if (count($userFavorites) > 0)

Favoritos

@foreach ($userFavorites as $favorite)
{{ $favorite->event->title_small }}
{{ \Carbon\Carbon::parse($favorite->event->fecha_evento)->format('d \d\e F') }} • {{ \Carbon\Carbon::parse($favorite->event->hora_evento)->format('H:i') }}
{{ $favorite->event->title_small }}
@endforeach
@if ($userFavorites->lastPage() > 1)
@if ($userFavorites->previousPageUrl()) Anterior @endif @foreach ($userFavorites->links()->elements[0] as $page => $url) {{ $page }} @endforeach @if ($userFavorites->nextPageUrl()) Siguiente @endif
@endif
@else

Tu lista de favoritos está vacía

Agrega tus eventos favoritos aquí para tenerlos siempre a mano.
Así podrás regresar y comprar entradas para las
experiencias que más te interesan.

Explorar Eventos
@endif
@endsection