new ticket add clothing type (#46)

Reviewed-on: #46
This commit is contained in:
2025-03-03 21:00:46 +00:00
parent 24f28c24f2
commit 6e0168ce52
3 changed files with 21 additions and 5 deletions

View File

@ -5,14 +5,14 @@ namespace App\Enum;
class TicketData
{
public const TICKET_DATA = [
0 => [
'name' => 'Zeugnisvergabe',
'price' => 0,
],
1 => [
'name' => 'All-Inclusive Ticket',
'price' => 50,
],
2 => [
'name' => 'After-Show Ticket',
'price' => 20,
],
3 => [
'name' => 'Kind (12-15 Jahre)',
'price' => 25,
@ -25,9 +25,14 @@ class TicketData
'name' => 'Kind (0-6 Jahre)',
'price' => 0,
],
2 => [
'name' => 'After-Show Ticket (ab 22 Uhr)',
'price' => 20,
],
];
public const TYPES = [
'Zeugnisvergabe' => 0,
'All-Inclusive Ticket' => 1,
'After-Show Ticket' => 2,
'Kind (12-15 Jahre)' => 3,