31 lines
984 B
PHP
31 lines
984 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\Api\V1;
|
|
|
|
use App\Enums\CrowdListType;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
final class UpdateCrowdListRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/** @return array<string, mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'crowd_type_id' => ['sometimes', 'ulid', Rule::exists('crowd_types', 'id')->where('organisation_id', $this->route('event')->organisation_id)],
|
|
'name' => ['sometimes', 'string', 'max:255'],
|
|
'type' => ['sometimes', Rule::enum(CrowdListType::class)],
|
|
'recipient_company_id' => ['nullable', 'ulid', Rule::exists('companies', 'id')->where('organisation_id', $this->route('event')->organisation_id)],
|
|
'auto_approve' => ['sometimes', 'boolean'],
|
|
'max_persons' => ['nullable', 'integer', 'min:1'],
|
|
];
|
|
}
|
|
}
|