for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NukaCode\Users\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class Registration extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
return [
'email' => 'required|email|unique:users,email',
'username' => 'required|unique:users,username',
'password' => 'required|confirmed',
'password_confirmation' => 'required',
];
}
* Determine if the user is authorized to make this request.
* @return bool
public function authorize()
return auth()->guest();