Licentia Contacts

Support contacts by area

Browse head office, provincial, and franchise contacts. Each section can be expanded and searched separately.

Head Office

Name, role, number, and email

@forelse ($headOffice as $contact) @php $name = $contact['name'] ?? ''; $role = $contact['role'] ?? 'Head Office'; $phone = $contact['number'] ?? null; $email = $contact['email'] ?? null; $tel = $phone ? ('tel:' . preg_replace('/(?!^\+)[^\d]/', '', $phone)) : null; $mailto = $email ? ('mailto:' . $email) : null; $waDigits = $phone ? preg_replace('/\D/', '', $phone) : null; $wa = $waDigits ? ('https://wa.me/' . $waDigits) : null; $initials = collect(preg_split('/\s+/', trim($name)))->filter()->take(2)->map(fn ($part) => mb_strtoupper(mb_substr($part, 0, 1)))->join(''); if ($initials === '') { $initials = 'HO'; } @endphp
{{ $initials }}

{{ $name }}

Head Office

{{ $role }}

{{ $email ?: '—' }}

{{ $phone ?: '—' }}

@if ($tel) Call @else @endif @if ($mailto) Email @else @endif
@if ($wa) WhatsApp @else @endif
@empty

No head office contacts matched your search.

@endforelse

Provincial

Province, number, and email

@forelse ($provincial as $contact) @php $province = $contact['province'] ?? ''; $phone = $contact['number'] ?? null; $email = $contact['email'] ?? null; $tel = $phone ? ('tel:' . preg_replace('/(?!^\+)[^\d]/', '', $phone)) : null; $mailto = $email ? ('mailto:' . $email) : null; $waDigits = $phone ? preg_replace('/\D/', '', $phone) : null; $wa = $waDigits ? ('https://wa.me/' . $waDigits) : null; $initials = collect(preg_split('/\s+/', trim($province)))->filter()->take(2)->map(fn ($part) => mb_strtoupper(mb_substr($part, 0, 1)))->join(''); if ($initials === '') { $initials = 'PO'; } @endphp
{{ $initials }}

{{ $province }}

Province

Provincial Office

{{ $email ?: '—' }}

{{ $phone ?: '—' }}

@if ($tel) Call @else @endif @if ($mailto) Email @else @endif
@if ($wa) WhatsApp @else @endif
@empty

No provincial contacts matched your search.

@endforelse

Franchise

Town, number, and email

@forelse ($franchise as $contact) @php $town = $contact['town'] ?? ''; $phone = $contact['number'] ?? null; $email = $contact['email'] ?? null; $tel = $phone ? ('tel:' . preg_replace('/(?!^\+)[^\d]/', '', $phone)) : null; $mailto = $email ? ('mailto:' . $email) : null; $waDigits = $phone ? preg_replace('/\D/', '', $phone) : null; $wa = $waDigits ? ('https://wa.me/' . $waDigits) : null; $initials = collect(preg_split('/\s+/', trim($town)))->filter()->take(2)->map(fn ($part) => mb_strtoupper(mb_substr($part, 0, 1)))->join(''); if ($initials === '') { $initials = 'FO'; } @endphp
{{ $initials }}

{{ $town }}

Town

Franchise Office

{{ $email ?: '—' }}

{{ $phone ?: '—' }}

@if ($tel) Call @else @endif @if ($mailto) Email @else @endif
@if ($wa) WhatsApp @else @endif
@empty

No franchise contacts matched your search.

@endforelse
@push('styles') @endpush