Files
backend-mm/app/Http/Requests/Api/V1/Auth/AuthLoginRequest.php
2026-07-21 21:30:27 +05:00

31 lines
709 B
PHP

<?php
namespace App\Http\Requests\Api\V1\Auth;
use Illuminate\Foundation\Http\FormRequest;
class AuthLoginRequest extends FormRequest
{
/**
* Prepare the data for validation.
*/
protected function prepareForValidation(): void
{
$this->merge([
'phone_number' => normalizeTurkmenPhoneNumber($this->phone_number),
]);
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string>
*/
public function rules(): array
{
return [
'phone_number' => ['required', 'integer', 'between:61000000,71999999'],
];
}
}