@extends('layouts.app') @section('title', 'Inicio') @section('body')
Imagen pequeña del evento

{{ $artist['name'] }}

Eventos

{{ $products->count() }} {{ $products->count() == 1 ? 'Evento' : 'Eventos' }} en total
@foreach ($products as $event)
@php $super_img_url = env('CDN_URL') . '/public/products/' . $event['id'] . '/' . $event['ticketing_super_img']; $poster_url = env('CDN_URL') . '/public/products/' . $event['id'] . '/' . $event['poster'] . '?w=150&h=150&fit=crop'; @endphp Imagen de {{ $event['title_small'] }}

{{ $event['title_small'] }}

{{ \Carbon\Carbon::parse($event['fecha_evento'])->format('d/m/Y') }} • {{ \Carbon\Carbon::parse($event['hora_evento'])->format('g:i A') }}

{{ $artist['name'] }}

{{ $event['address'] }}

@endforeach
{!! $artist['embed_html'] !!}

{{ $artist['name'] }}

@if (!empty($artist['description']))

{{ $artist['description'] }}

@endif
@if ( !empty($artist['rs_facebook']) || !empty($artist['rs_instagram']) || !empty($artist['rs_youtube']) || !empty($artist['rs_spotify']))

Sigue a {{ $artist['name'] }} en:

@endif
@if (!empty($artist['rs_facebook'])) @endif @if (!empty($artist['rs_instagram'])) @endif @if (!empty($artist['rs_youtube'])) @endif @if (!empty($artist['rs_spotify'])) @endif
Imagen del artista {{ $artist['name'] }}

{{ $artist['name'] }}

@if (!empty($artist['description']))

{{ $artist['description'] }}

@endif {!! $artist['embed_html'] !!}
@endsection