checkAuthority(); } public function rules() { return [ ]; } public function prepareForValidation() { } private function checkAuthority() { $this->error_message = ctrans('texts.authorization_failure'); /** @var \App\Models\User $user */ $user = auth()->user(); if(Ninja::isHosted() && $user->account->isFreeHostedClient()) { $this->error_message = ctrans('texts.upgrade_to_view_reports'); return false; } return $user->isAdmin() || $user->hasPermission('view_reports'); } protected function failedAuthorization() { throw new AuthorizationException($this->error_message); } }