canDo('feature.feature.action.copy')) { return true; } $this->model->is_owner; } /** * Determine if the given user can empty the given feature. * * @param Authenticatable $user * * @return bool */ function empty(Authenticatable $user, Feature $feature) { if ($authUser->canDo('feature.feature.action.empty')) { return true; } $this->model->is_owner; } /** * Determine if the given user can transfer the given feature. * * @param Authenticatable $user * * @return bool */ public function transfer(Authenticatable $user, Feature $feature) { if ($authUser->canDo('feature.feature.action.transfer')) { return true; } $this->model->is_owner; } }