38 lines
774 B
PHP
38 lines
774 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Lead;
|
|
|
|
use App\Enums\LeadStatus;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class UpdateLeadRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, array<int, mixed>>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'status' => ['sometimes', 'string', Rule::enum(LeadStatus::class)],
|
|
'is_read' => ['sometimes', 'boolean'],
|
|
'admin_note' => ['nullable', 'string'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'status.in' => 'Geçersiz durum değeri.',
|
|
];
|
|
}
|
|
}
|