PATH:
home
/
rwabteecom
/
public_html
/
storage
/
framework
/
views
/
Editing: 3769126ac415bfc59a5f6e585c95a0bd.php
<!DOCTYPE html> <html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <?php if(checkFeature('seo')): ?> <?php if($vcard->meta_description): ?> <meta name="description" content="<?php echo e($vcard->meta_description); ?>"> <?php endif; ?> <?php if($vcard->meta_keyword): ?> <meta name="keywords" content="<?php echo e($vcard->meta_keyword); ?>"> <?php endif; ?> <?php else: ?> <meta name="description" content="<?php echo e(strip_tags($vcard->description)); ?>"> <meta name="keywords" content=""> <?php endif; ?> <meta property="og:image" content="<?php echo e($vcard->cover_url); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php if(checkFeature('seo') && $vcard->site_title && $vcard->home_title): ?> <title><?php echo e($vcard->home_title); ?> | <?php echo e($vcard->site_title); ?></title> <?php else: ?> <title><?php echo e(getAppName()); ?></title> <?php endif; ?> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Favicon --> <link rel="icon" href="<?php echo e(getFaviconUrl()); ?>" type="image/png"> <link href="<?php echo e(asset('front/css/bootstrap.min.css')); ?>" rel="stylesheet"> <link rel="stylesheet" href="<?php echo e(mix('assets/css/vcard16.css')); ?>"> <link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/css/third-party.css')); ?>"> <link rel="stylesheet" type="text/css" href="<?php echo e(asset('css/plugins.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/custom-vcard.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/slider/css/slick.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/slider/css/slick-theme.min.css')); ?>"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet"> <?php if(checkFeature('custom-fonts') && $vcard->font_family): ?> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=<?php echo e($vcard->font_family); ?>"> <?php endif; ?> <?php if($vcard->font_family || $vcard->font_size || $vcard->custom_css): ?> <style> <?php if(checkFeature('custom-fonts')): ?> <?php if($vcard->font_family): ?> body { font-family: <?php echo e($vcard->font_family); ?>; } <?php endif; ?> <?php if($vcard->font_size): ?> div>h4 { font-size: <?php echo e($vcard->font_size); ?>px !important; } <?php endif; ?> <?php endif; ?> <?php if(isset(checkFeature('advanced')->custom_css)): ?> <?php echo $vcard->custom_css; ?> <?php endif; ?> </style> <?php endif; ?> </head> <body> <div class="vcard-sixteen-effect"></div> <div class="container p-0 product-details-page"> <div class="vcard-sixteen main-content w-100 mx-auto content-blur allSection collapse show"> <div class="vcard-one__product py-3 mt-0"> <div class="d-flex justify-content-between align-items-center gap-2 px-4 mb-4" <?php if(getLanguage($vcard->default_language) == 'Arabic'): ?> dir="rtl" <?php endif; ?>> <div> <h4 class="vcard-sixteen-heading"><?php echo e(__('messages.vcard.products')); ?></h4> </div> <div> <a class="vcard-sixteen-btn text-decoration-none" href="<?php echo e($vcardUrl); ?>" role="button"><?php echo e(__('messages.common.back')); ?></a> </div> </div> <div class="container px-4"> <div class="g-4 product-slider overflow-hidden"> <?php $__currentLoopData = $products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="d-flex justify-content-center mb-2"> <a <?php if($product->product_url): ?> href="<?php echo e($product->product_url); ?>" <?php endif; ?> target="_blank" class="text-decoration-none fs-6"> <div class="card product-card w-100 h-100"> <div class="product-profile <?php echo e($product->media->count() < 2 ? 'd-flex justify-content-center' : ''); ?> product-img-slider"> <?php $__currentLoopData = $product->media; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $media): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div> <div class="product-card-img"> <img src="<?php echo e($media->getUrl()); ?>" alt="<?php echo e($product->name); ?>" class="text-center object-fit-contain" height="208px" loading="lazy"> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <div class="product-desc card-body d-flex align-items-center justify-content-between px-0 pb-3" <?php if(getLanguage($vcard->default_language) == 'Arabic'): ?> dir="rtl" <?php endif; ?>> <div class="product-title"> <h3 class="text-primary fs-18 mb-0"><?php echo e($product->name); ?></h3> <p class="fs-14 text-gray-300 mb-0"> <?php echo e($product->description); ?> </p> </div> <div class="product-amount text-primary fs-18"> <?php if($product->currency_id && $product->price): ?> <span class="text-dark product-price-<?php echo e($product->id); ?>"><?php echo e($product->currency->currency_icon); ?><?php echo e(getSuperAdminSettingValue('hide_decimal_values') == 1 ? number_format($product->price, 0) : number_format($product->price, 2)); ?></span> <?php elseif($product->price): ?> <span class="text-dark product-price-<?php echo e($product->id); ?>"><?php echo e(getUserCurrencyIcon($vcard->user->id)); ?><?php echo e($product->price); ?></span> <?php endif; ?> </div> </div> </a> <?php if(!empty($product->price)): ?> <div class="text-center"> <button class="send-btn btn-primary buy-product" data-id="<?php echo e($product->id); ?>"><?php echo e(__('messages.subscription.buy_now')); ?></button> </div> <?php endif; ?> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> </div> <?php echo $__env->make('vcardTemplates.product-buy', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <script src="https://js.stripe.com/v3/"></script> <script type="text/javascript" src="<?php echo e(asset('assets/js/front-third-party.js')); ?>"></script> <script type="text/javascript" src="<?php echo e(asset('front/js/bootstrap.bundle.min.js')); ?>"></script> <script src="<?php echo e(asset('assets/js/slider/js/slick.min.js')); ?>" type="text/javascript"></script> <script> <?php if(checkFeature('seo') && $vcard->google_analytics): ?> <?php echo $vcard->google_analytics; ?> <?php endif; ?> <?php if(isset(checkFeature('advanced')->custom_js) && $vcard->custom_js): ?> <?php echo $vcard->custom_js; ?> <?php endif; ?> </script> <?php $setting = \App\Models\UserSetting::where('user_id', $vcard->tenant->user->id) ->where('key', 'stripe_key') ->first(); ?> <script> let stripe = ''; <?php if(!empty($setting) && !empty($setting->value)): ?> stripe = Stripe('<?php echo e($setting->value); ?>'); <?php endif; ?> let isEdit = false; let password = "<?php echo e(isset(checkFeature('advanced')->password) && !empty($vcard->password)); ?>"; let passwordUrl = "<?php echo e(route('vcard.password', $vcard->id)); ?>"; let enquiryUrl = "<?php echo e(route('enquiry.store', ['vcard' => $vcard->id, 'alias' => $vcard->url_alias])); ?>"; let appointmentUrl = "<?php echo e(route('appointment.store', ['vcard' => $vcard->id, 'alias' => $vcard->url_alias])); ?>"; let paypalUrl = "<?php echo e(route('paypal.init')); ?>"; let slotUrl = "<?php echo e(route('appointment-session-time', $vcard->url_alias)); ?>"; let appUrl = "<?php echo e(config('app.url')); ?>"; let vcardId = <?php echo e($vcard->id); ?>; let vcardAlias = "<?php echo e($vcard->url_alias); ?>"; let languageChange = "<?php echo e(url('language')); ?>"; let lang = "<?php echo e(checkLanguageSession($vcard->url_alias)); ?>"; </script> <script> let options = { 'key': "<?php echo e(getSelectedPaymentGateway('razorpay_key')); ?>", 'amount': 0, // 100 refers to 1 'currency': 'INR', 'name': "<?php echo e(getAppName()); ?>", 'order_id': '', 'description': '', 'image': '<?php echo e(asset(getAppLogo())); ?>', // logo here 'callback_url': "<?php echo e(route('product.razorpay.success')); ?>", 'prefill': { 'email': '', // recipient email here 'name': '', // recipient name here 'contact': '', // recipient phone here }, 'readonly': { 'name': 'true', 'email': 'true', 'contact': 'true', }, 'theme': { 'color': '#0ea6e9', }, 'modal': { 'ondismiss': function() { $('#paymentGatewayModal').modal('hide'); displayErrorMessage(Lang.get('js.payment_not_complete')); setTimeout(function() { Turbo.visit(window.location.href); }, 1000); }, }, }; </script> <script> $('.product-img-slider').slick({ dots: true, infinite: true, speed: 300, slidesToShow: 1, autoplay: true, slidesToScroll: 1, arrows: false, responsive: [{ breakpoint: 575, settings: { slidesToShow: 1, slidesToScroll: 1, infinite: true, dots: true, }, }, ], }); </script> <?php echo app('Tightenco\Ziggy\BladeRouteGenerator')->generate(); ?> <script src="<?php echo e(asset('messages.js?$mixID')); ?>"></script> <script src="<?php echo e(mix('assets/js/custom/helpers.js')); ?>"></script> <script src="<?php echo e(mix('assets/js/custom/custom.js')); ?>"></script> <script src="<?php echo e(mix('assets/js/vcards/vcard-view.js')); ?>"></script> <script src="<?php echo e(mix('assets/js/lightbox.js')); ?>"></script> </body> </html> <?php /**PATH /home/rwabteecom/public_html/resources/views/vcardTemplates/products/vcard16.blade.php ENDPATH**/ ?>
SAVE
CANCEL