17 lines
387 B
PHP
17 lines
387 B
PHP
<?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(),
|
|
];
|
|
}
|
|
}
|