koel/app/Http/Requests/API/UserStoreRequest.php

36 lines
663 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Http\Requests\API;
2016-08-03 10:42:11 +00:00
/**
* @property string password
* @property string name
* @property string email
*/
2015-12-13 04:42:28 +00:00
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',
2015-12-14 13:22:39 +00:00
'password' => 'required',
2015-12-13 04:42:28 +00:00
];
}
}