@if (checkFeature('seo')) @if ($vcard->meta_description)
@endif @if ($vcard->meta_keyword)
@endif @else
@endif
@if (checkFeature('seo') && $vcard->site_title && $vcard->home_title)
{{ $vcard->home_title }} | {{ $vcard->site_title }}
@else
{{ getAppName() }}
@endif
{{-- google font --}}
@if (checkFeature('custom-fonts') && $vcard->font_family)
@endif @if ($vcard->font_family || $vcard->font_size || $vcard->custom_css) @endif
{{ __('messages.vcard.products') }}
{{ __('messages.common.back') }}
@foreach ($products as $product)
product_url) href="{{ $product->product_url }}" @endif target="_blank" class="text-decoration-none fs-6">
{{ $product->name }}
{{ $product->description }}
@if ($product->currency_id && $product->price)
{{ $product->currency->currency_icon }}{{ number_format($product->price, 2) }}
@elseif($product->price)
{{ getUserCurrencyIcon($vcard->user->id) }}{{ $product->price }}
@endif
@if (!empty($product->price))
{{ __('messages.subscription.buy_now') }}
@endif
@endforeach
@include('vcardTemplates.product-buy') @php $setting = \App\Models\UserSetting::where('user_id', $vcard->tenant->user->id) ->where('key', 'stripe_key') ->first(); @endphp @routes