has('action')) { return false; } if (! in_array($this->action, $this->getBulkOptions(), true)) { return false; } return auth()->user()->can(auth()->user()->isAdmin(), RecurringExpense::class); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { $rules = $this->getGlobalRules(); /* We don't require IDs on bulk storing. */ if ($this->action !== self::$STORE_METHOD) { $rules['ids'] = ['required']; } return $rules; } }