@extends('layouts.layout') @section('title', $event['title_small']) @section('body')
@php $super_img_url = isset($event['product_images'][0]['image']) ? env('CDN_URL') . '/public/products/' . $event['id'] . '/' . $event['product_images'][0]['image'] : env('CDN_URL') . '/public/products/' . $event['id'] . '/' . $event['ticketing_super_img']; $mobile_img_url = isset($event['product_images'][0]['image_mobile']) ? env('CDN_URL') . '/public/products/' . $event['id'] . '/' . $event['product_images'][0]['image_mobile'] : env('CDN_URL') . '/public/products/' . $event['id'] . '/' . $event['poster']; @endphp {{ $event['title_small'] }}

{{ \Carbon\Carbon::parse($event['fecha_evento'])->format('d') }}

{{ strtoupper(\Carbon\Carbon::parse($event['fecha_evento'])->locale('es')->shortMonthName) }}

{{ \Carbon\Carbon::parse($event['hora_evento'])->format('g:i A') }}

@php $titleParts = explode(',', $event['address']); $beforeComma = isset($titleParts[0]) ? strtoupper($titleParts[0]) : ''; $afterComma = isset($titleParts[1]) ? trim($titleParts[1]) : ''; @endphp

{{ $beforeComma }}

{{ $afterComma }}

{{ $event['title_small'] }}

¡Disfruta del mejor concierto!

Detalle del Evento

Fecha:

{{ \Carbon\Carbon::parse($event['fecha_evento'])->locale('es')->isoFormat('dddd DD [de] MMMM [de] YYYY') }}

Hora:

{{ \Carbon\Carbon::parse($event['hora_evento'])->format('g:i A') }}

Dirección:

{{ $event['address'] }}

{!! $event['description'] !!}

Croquis del evento

ENTRADAS

Disfruta más que nunca.

@php $themeConfig = [ 'bg' => 'transparent', 'textPrimary' => 'text-black', 'textSecondary' => 'text-gray-500', 'descriptionColor' => 'text-gray-600', 'priceColor' => 'text-grey-700', 'border' => 'border-gray-200', 'button' => 'bg-purple-200 text-white hover:bg-purple-600 py-4', ]; @endphp

Sobre los artistas

@foreach ($event['artists'] as $artist)
Artista {{ $artist['name'] }}
{{ $artist['name'] }}
@endforeach
@endsection