add ticket purchase page

Co-authored-by: Jan-Marlon Leibl <jleibl@proton.me>
Reviewed-on: http://git.simonis.lol/projects/abiball/pulls/13
Reviewed-by: jank1619 <jan@kjan.email>
This commit is contained in:
2025-01-31 10:05:25 +00:00
parent f5ef5968eb
commit fc2a2c7873
42 changed files with 3637 additions and 176 deletions

25
src/Enum/TicketData.php Normal file
View File

@ -0,0 +1,25 @@
<?php
namespace App\Enum;
class TicketData
{
public const TICKET_DATA = [
1 => [
'name' => 'Ticket',
'price' => 50,
],
2 => [
'name' => 'After-Show Ticket',
'price' => 20,
],
3 => [
'name' => 'Kind (6-12 Jahre)',
'price' => 0,
],
4 => [
'name' => 'Kind (0-6 Jahre)',
'price' => 0,
],
];
}