hasRole('admin'); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'email' => 'required|email', 'name' => 'required|string', 'uuid' => 'required|max:32|min:32', 'roles' => 'required_without_all' ]; } }