1
0
mirror of https://github.com/robonen/education-project.git synced 2026-03-20 10:54:31 +00:00
Files
education-project/app/Http/Requests/Auth/UserRequest.php
nikden13 045a767774 auth
2020-12-16 03:13:20 +07:00

25 lines
452 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
abstract class UserRequest extends ApiFormRequest
{
public function specific()
{
return [];
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return array_merge([
'password' => 'required|string|min:6',
], $this->specific());
}
}