can('admin.userlist'); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'searchTerm' => 'required|string|max:17' // max user char limit set by Mojang ]; } }