PATH:
home
/
rwabteecom
/
public_html
/
storage
/
framework
/
views
/
Editing: a75177ea7674e06bd874ce6009799d41.php
<?php $customDomain = App\Models\CustomDomain::where('user_id', Auth::id())->first(); $isCustomDomainUse = $customDomain ? $customDomain->is_use_vcard : false; $vcardUrl = $isCustomDomainUse ? "https://{$customDomain->domain}/{$row->url_alias}" : route('vcard.show', ['alias' => $row->url_alias]); ?> <!--[if BLOCK]><![endif]--><?php if($row->status == 1): ?> <a href="<?php echo e($vcardUrl); ?>" id="vcardUrl<?php echo e($row->id); ?>" target="_blank" class="text-decoration-none fs-6 preview-url text-primary"><?php echo e($vcardUrl); ?></a> <button class="btn px-2 text-primary fs-2 user-edit-btn copy-clipboard" data-id="<?php echo e($row->id); ?>" title="<?php echo e('copy'); ?>"> <i class="fa-regular fa-copy fs-2"></i> </button> <?php else: ?> <span id="vcardUrl<?php echo e($row->id); ?>" target="_blank"><?php echo e($vcardUrl); ?></span> <?php endif; ?><!--[if ENDBLOCK]><![endif]--> <?php /**PATH /home/rwabteecom/public_html/resources/views/vcards/columns/preview.blade.php ENDPATH**/ ?>
SAVE
CANCEL