feat(forms): add desfile entry reservation form
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Shared\Forms\Services;
|
||||
|
||||
use App\Domains\Ticketing\Desfile\Enums\EntryReservationPaymentType;
|
||||
|
||||
class DesfileEntryReservationFormService
|
||||
{
|
||||
/** @return array{payment_types: list<array{value: string, label: string}>} */
|
||||
public function get(): array
|
||||
{
|
||||
return [
|
||||
'payment_types' => EntryReservationPaymentType::options(),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user