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