45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\Api\V1;
|
|
|
|
use App\Models\Event;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
final class StoreFestivalSectionRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/** @return array<string, mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'category' => ['nullable', 'string', 'max:50'],
|
|
'icon' => ['nullable', 'string', 'max:50'],
|
|
'sort_order' => ['nullable', 'integer', 'min:0'],
|
|
'type' => ['nullable', 'in:standard,cross_event'],
|
|
'crew_need' => ['nullable', 'integer', 'min:0'],
|
|
'crew_auto_accepts' => ['nullable', 'boolean'],
|
|
'crew_invited_to_events' => ['nullable', 'boolean'],
|
|
'added_to_timeline' => ['nullable', 'boolean'],
|
|
'responder_self_checkin' => ['nullable', 'boolean'],
|
|
'crew_accreditation_level' => ['nullable', 'string', 'max:50'],
|
|
'public_form_accreditation_level' => ['nullable', 'string', 'max:50'],
|
|
'timed_accreditations' => ['nullable', 'boolean'],
|
|
];
|
|
}
|
|
|
|
/** @return array<string, string> */
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'type.in' => 'Type moet standard of cross_event zijn.',
|
|
];
|
|
}
|
|
}
|