@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