Hubungi Kami
@php
$rawPhone = (string) (optional($profile)->phone ?? '');
$waPhone = preg_replace('/\D+/', '', $rawPhone);
if ($waPhone !== '') {
if (str_starts_with($waPhone, '0')) {
$waPhone = '62' . substr($waPhone, 1);
} elseif (str_starts_with($waPhone, '8')) {
$waPhone = '62' . $waPhone;
}
}
$waMessage = 'Halo, saya ingin bertanya tentang sewa kostum.';
$waUrl = $waPhone !== ''
? 'https://wa.me/' . $waPhone . '?text=' . urlencode($waMessage)
: null;
@endphp
-
Alamat:
{{ optional($profile)->address }}
-
Nomor Telepon (WhatsApp):
{{ optional($profile)->phone }}
@if($waUrl)
Chat WhatsApp
@endif
-
Email Resmi:
{{ optional($profile)->email }}