koel/app/Http/Requests/API/UserStoreRequest.php
2016-08-03 18:42:11 +08:00

35 lines
663 B
PHP

<?php
namespace App\Http\Requests\API;
/**
* @property string password
* @property string name
* @property string email
*/
class UserStoreRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return auth()->user()->is_admin;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required',
'email' => 'required|email|unique:users',
'password' => 'required',
];
}
}