38 lines
931 B
PHP
38 lines
931 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\V1\Auth;
|
|
|
|
use App\Rules\VerificationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class AuthLoginRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
/**
|
|
* @example 61929248
|
|
*/
|
|
'phone_number' => ['required', 'integer', 'between:61000000,71999999', Rule::exists('users', 'phone_number')],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the error messages for the defined validation rules.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'phone_number.exists' => __('User with this phone number does not exist'),
|
|
];
|
|
}
|
|
}
|