@php $settings = app(\App\Support\AppSettings::class); $storeName = $settings->get('company_name', 'Our Pharmacy'); $storeEmail = $settings->get('shop_email'); $storePhone = $settings->get('support_phone'); $storeAddress = $settings->get('shop_address'); $currency = $settings->get('currency', 'USD'); $deliveryFee = (float) $settings->get('shop_delivery_fee', 0); $freeOver = (float) $settings->get('shop_free_delivery_over', 0); @endphp

{{ $pageTitle }}

{{ $pageIntro }}

Last updated {{ now()->format('d F Y') }}

{{-- Section nav --}} {{-- Content --}}
@foreach ($sections as $index => $section)

{{ $index + 1 }} {{ $section['heading'] }}

@foreach ((array) $section['body'] as $paragraph)

{!! $paragraph !!}

@endforeach @if (! empty($section['list']))
    @foreach ($section['list'] as $item)
  • {!! $item !!}
  • @endforeach
@endif
@endforeach {{-- Contact block --}}

Get in touch

For anything related to this policy, reach {{ $storeName }} directly:

@if ($storeEmail)

{{ $storeEmail }}

@endif @if ($storePhone)

{{ $storePhone }}

@endif @if ($storeAddress)

{{ $storeAddress }}

@endif