@php $settings = app(\App\Support\AppSettings::class); $phone = $settings->get('support_phone'); $email = $settings->get('shop_email'); $address = $settings->get('shop_address'); $contactImage = $settings->get('shop_contact_image_path') ? (Str::startsWith($settings->get('shop_contact_image_path'), ['http://', 'https://']) ? $settings->get('shop_contact_image_path') : asset($settings->get('shop_contact_image_path'))) : 'https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1300&q=85'; $faqs = collect(preg_split('/\r\n|\r|\n/', (string) $settings->get('shop_faq_items'))) ->map(fn ($line) => array_map('trim', array_pad(explode('|', $line, 2), 2, ''))) ->filter(fn ($faq) => filled($faq[0]) && filled($faq[1])) ->values(); @endphp

{{ $settings->get('shop_contact_title') }}

{{ $settings->get('shop_contact_subtitle') }}

Contact {{ $settings->get('company_name') }}
{{-- Contact info --}}
@if ($phone) Call or WhatsApp {{ $phone }} @endif @if ($email) Email us {{ $email }} @endif @if ($address)
Visit the pharmacy {{ $address }}
@endif
Opening hours Every day, 8 AM - 11 PM

Checking on an order?

Use your customer dashboard to review orders, saved delivery details, and account updates.

{{-- Contact form --}}

Send us a message

Fill in the form and our team will get back to you by email or phone.

@if (session('shop_status'))
{{ session('shop_status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- FAQ --}}

Quick answers

Frequently asked questions

@foreach ($faqs as [$question, $answer])
{{ $question }}

{{ $answer }}

@endforeach