@if(checkFeature('seo')) @if($vcard->meta_description) @endif @if($vcard->meta_keyword) @endif @endif @if(checkFeature('seo') && $vcard->site_title && $vcard->home_title) {{ $vcard->home_title }} | {{ $vcard->site_title }} @else {{ $vcard->name }} | {{ getAppName() }} @endif {{ $vcard->name }} | {{ getAppName() }} {{--css link--}} @if(checkFeature('custom-fonts') && $vcard->font_family) @endif @if($vcard->font_family || $vcard->font_size || $vcard->custom_css) @endif
@include('vcards.password')

{{ ucwords($vcard->first_name.' '.$vcard->last_name) }}

{{ ucwords($vcard->occupation) }}

{!! $vcard->description !!}
@if($vcard->email)
{{ __('messages.vcard.email_address') }} {{ $vcard->email }}
@endif @if($vcard->alternative_email)
{{ __('messages.vcard.alter_email_address') }} {{ $vcard->alternative_email }}
@endif @if($vcard->phone)
{{ __('messages.vcard.mobile_number') }}
+{{ $vcard->region_code }} -{{ $vcard->phone }}
@endif @if($vcard->alternative_phone)
{{ __('messages.vcard.alter_mobile_number') }}
+{{ $vcard->alternative_region_code }} -{{ $vcard->alternative_phone }}
@endif @if($vcard->dob)
{{ __('messages.vcard.dob') }}

{{ $vcard->dob }}

@endif @if($vcard->location)
{{ __('messages.vcard.location') }}

{{ ucwords($vcard->location) }}

@endif
{{--our services--}} @if(checkFeature('services') && $vcard->services->count())

{{ __('messages.vcard.our_service') }}

@foreach($vcard->services as $service)
{{$service->name}}
{{ ucwords($service->name) }}

{!! $service->description !!}

@endforeach
@endif {{--gallery--}} @if(checkFeature('gallery') && $vcard->gallery->count())
@endif {{--product--}} @if(checkFeature('products') && $vcard->products->count()) @endif {{--testimonial--}} @if(checkFeature('testimonials') && $vcard->testimonials->count())

{{ __('messages.plan.testimonials') }}

@foreach($vcard->testimonials as $testimonial)

{!! $testimonial->description !!}

{{ ucwords($testimonial->name) }}
@endforeach
@endif {{-- blog--}} @if(checkFeature('blog') && $vcard->blogs->count())

{{ __('messages.feature.blog') }}

@foreach($vcard->blogs as $blog) @endforeach
@endif {{--Qrcode--}}

{{ __('messages.vcard.qr_code') }}

{!! QrCode::size(130)->format('svg')->generate(Request::url()); !!}
{{--business hour--}} @if($vcard->businessHours->count()) @php $todayWeekName = strtolower(\Carbon\Carbon::now()->rawFormat('D')) @endphp

{{ __('messages.business.business_hours') }}

@foreach($businessDaysTime as $key => $dayTime)
{{ __('messages.business.'.\App\Models\BusinessHour::DAY_OF_WEEK[$key]) }}
{{ $dayTime ?? 'Closed' }}
@endforeach
@endif {{--Appointment--}} @if(checkFeature('appointments') && $vcard->appointmentHours->count())

{{__('messages.make_appointments')}}

{{ Form::text('date', null, ['class' => 'date appoint-input', 'placeholder' =>__('messages.form.pick_date'),'id'=>'pickUpDate']) }}
@include('vcardTemplates.appointment')
@endif {{--contact us--}} @php $currentSubs = $vcard->subscriptions()->where('status', \App\Models\Subscription::ACTIVE)->latest()->first() @endphp @if($currentSubs && $currentSubs->plan->planFeature->enquiry_form)

{{ __('messages.contact_us.contact_us') }}

@csrf
@endif
{{--share btn--}}
@if(!empty($userSetting['enable_affiliation'])) @endif @if($vcard->location_url && isset($url[5]))
@endif
@if(checkFeature('advanced')) @if(checkFeature('advanced')->hide_branding && $vcard->branding == 0) @if($vcard->made_by) made_by_url)) href="{{$vcard->made_by_url}}" @endif class="text-center text-decoration-none text-dark" target="_blank"> {{ __('messages.made_by') }} {{ $vcard->made_by }} @else
{{ __('messages.made_by') }} {{ $setting['app_name'] }}
@endif @endif @else @if($vcard->made_by) made_by_url)) href="{{$vcard->made_by_url}}" @endif class="text-center text-decoration-none text-dark" target="_blank"> {{ __('messages.made_by') }} {{ $vcard->made_by }} @else
{{ __('messages.made_by') }} {{ $setting['app_name'] }}
@endif @endif @if(!empty($vcard->privacy_policy) || !empty($vcard->term_condition))
{!! __('messages.vcard.term_policy') !!}
@endif
{{-- share modal code--}}
@include('vcardTemplates.template.templates') @php $setting = \App\Models\UserSetting::where('user_id', $vcard->tenant->user->id)->where('key', 'stripe_key')->first(); @endphp @routes