@extends('layouts.layout') @section('title', 'Inicio') @section('body')
@php $themeConfig = [ 'bg' => 'transparent', // Fondo general para toda la tabla 'textPrimary' => 'text-white', 'textSecondary' => 'text-gray-500', 'descriptionColor' => 'text-gray-600', 'priceColor' => 'text-grey-100', 'border' => 'border-gray-200', 'button' => 'bg-purple-200 text-white hover:bg-purple-600 py-4', ]; $tickets = [ [ 'tipo' => 'ZONA VIP', 'color' => 'bg-purple-200', 'precios' => [ 'Preventa 1' => 'S/ 100.00', 'Preventa 2' => 'S/ 100.00', 'Regular' => 'S/ 130.00', ], ], [ 'tipo' => 'ZONA GENERAL', 'color' => 'bg-blue-200', 'precios' => [ 'Preventa 1' => 'S/ 50.00', 'Preventa 2' => 'S/ 60.00', 'Regular' => 'S/ 80.00', ], ], [ 'tipo' => 'ZONA PREMIUM', 'color' => 'bg-green-200', 'precios' => [ 'Preventa 1' => 'S/ 50.00', 'Preventa 2' => 'S/ 60.00', 'Regular' => 'S/ 80.00', ], ], ]; $priceTypes = [ ['nombre' => 'Preventa 1', 'descripcion' => 'Válido del 22/08/24 hasta el 23/08/24 y/o hasta agotar stock.'], ['nombre' => 'Preventa 2', 'descripcion' => 'Válido del 22/08/24 hasta el 23/08/24 y/o hasta agotar stock.'], ['nombre' => 'Regular', 'descripcion' => 'Válido del 22/08/24 hasta el 23/08/24 y/o hasta agotar stock.'], ]; @endphp
{{--
--}}

Sobre los artistas

@php $artistas = [ [ 'nombre' => 'Tomás Suárez Vértiz', 'imagen' => 'storage/detalle-evento/907-LANDING_TOMAS-SUAREZ-VERTIZ.jpg', 'descripcion' => 'Banda principal' ], [ 'nombre' => 'Rio', 'imagen' => 'storage/detalle-evento/156-LANDING_RIO.jpg', 'descripcion' => 'Banda invitada' ], [ 'nombre' => 'Bareto', 'imagen' => 'storage/detalle-evento/9674-LANDING_BARETO.jpg', 'descripcion' => 'Banda invitada' ] ]; @endphp @foreach($artistas as $artista)
Artista {{ $artista['nombre'] }}
{{ $artista['nombre'] }}
@endforeach
0
@endsection