phpvms/app/Http/Requests/CreateUserRequest.php

30 lines
571 B
PHP
Raw Normal View History

2017-11-30 08:01:07 +08:00
<?php
namespace App\Http\Requests;
use App\Models\User;
use Illuminate\Foundation\Http\FormRequest;
class CreateUserRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
* @return bool
*/
2018-03-22 01:35:06 +08:00
public function authorize(): bool
2017-11-30 08:01:07 +08:00
{
return true;
}
/**
* Get the validation rules that apply to the request.
* @return array
*/
2018-03-22 01:35:06 +08:00
public function rules(): array
2017-11-30 08:01:07 +08:00
{
$rules = User::$rules;
$rules['email'] .= '|unique:users,email';
return $rules;
2017-11-30 08:01:07 +08:00
}
}