{{--banner--}}
@if($vcard->language_enable == \App\Models\Vcard::LANGUAGE_ENABLE)
@endif
{{--profile details--}}

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

{{ ucwords($vcard->occupation) }}
{{$vcard->description}}
{{--social media icon--}} {{--event--}} @if($vcard->email || $vcard->phone || $vcard->dob || $vcard->location)
@if($vcard->email)
email
{{ __('messages.vcard.email_address') }}
{{ $vcard->email }}
@endif @if($vcard->phone)
mobile
{{ __('messages.vcard.mobile_number') }}
+{{ $vcard->region_code }} {{ $vcard->phone }}
@endif @if($vcard->dob)
birthday
{{ __('messages.vcard.dob') }}
{{ $vcard->dob }}
@endif @if($vcard->location)
location
{{ __('messages.vcard.location') }}
{!! ucwords($vcard->location) !!}
@endif
@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())

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

@foreach($vcard->products as $product)
profile

{{$product->name}}

{{$product->description}}

@if($product->currency_id && $product->price) {{$product->currency->currency_icon}}{{$product->price}} @elseif($product->price) {{$product->price}} @else N/A @endif
@endforeach
@endif {{--trstimonial--}} @if(checkFeature('testimonials') && $vcard->testimonials->count())

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

@foreach($vcard->testimonials as $testimonial)
profile
{{ ucwords($testimonial->name) }}

{!! $testimonial->description !!}

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

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

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

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

qr profile
{!! QrCode::size(130)->format('svg')->generate(Request::url()); !!}
{{--business hour--}} @if($vcard->businessHours->count())

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

@foreach($vcard->businessHours as $day)
{{ strtoupper(__('messages.business.'.\App\Models\BusinessHour::DAY_OF_WEEK[$day->day_of_week]))}} : {{ $day->start_time.' - '.$day->end_time }}
@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($vcard->location_url && isset($url[5]))
@endif
@if(!isset(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-white" 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