@extends('landing.layout') @section('title', 'Kontak') @section('meta') @include('landing.meta') @endsection @push('style') @vite(['resources/js/landing/contact/import.js']) @turnstileScripts() @endpush @section('content')

Hubungi Kami !

{{-- Phone Section --}} @if ($web->phones && $web->phones->count() > 0)
Telepon
@foreach ($web->phones as $phone) {{ $phone }} @endforeach
@endif {{-- Email Section --}} @if ($web->emails && $web->emails->count() > 0)
Email
@foreach ($web->emails as $email) {{ $email }} @endforeach
@endif {{-- Location Section --}} @if ($web->addresses && $web->addresses->count() > 0)
Lokasi
@foreach ($web->addresses as $address)

@if ($address->address) {{ $address->address }}
@endif

@if ($address->type) ({{ ucfirst($address->type) }}) @endif
@endforeach
@endif {{-- WhatsApp Section (Opsional) --}} @if ($web->whatsapps && $web->whatsapps->count() > 0)
WhatsApp
@foreach ($web->whatsapps as $whatsapp) {{ $whatsapp }} @endforeach
@endif {{-- Call Center Section (Opsional) --}} @if ($web->call_centers && $web->call_centers->count() > 0)
Call Center
@foreach ($web->call_centers as $callCenter) {{ $callCenter }} @endforeach
@endif
@endsection