@extends('frontend.layouts.app') @section('title', $title) @section('description', $description) @section('content') @php $settingsService = app(\App\Services\SettingsService::class); $contactPhone = $settingsService->get('contact_phone', '+263 78 691 2342'); $contactEmail = $settingsService->get('contact_email', config('mail.from.address')); $contactAddress = $settingsService->get('contact_address', '3690 New Market Rd #309, Brodil, San Fransisko - USA'); $contactWhatsapp = $settingsService->get('contact_whatsapp'); $contactHours = collect(preg_split('/\r\n|\r|\n/', (string) $settingsService->get('contact_hours', ''))) ->map(fn ($line) => trim($line)) ->filter() ->values(); $contactMapEmbedUrl = $settingsService->get('contact_map_embed_url') ?: 'https://maps.google.com/maps?q=Harare%2C%20Zimbabwe&t=m&z=12&output=embed&iwloc=near'; $logoSetting = $settingsService->get('primary_logo') ?: $settingsService->get('logo_url'); $contactLogo = $logoSetting ? asset('storage/' . $logoSetting) : asset('frontend/images/logo/ndarama-logo.svg'); @endphp @include('frontend.layouts.breadcrumb', ['title' => 'Contact Us'])
Contact Us

Get in Touch with Ndarama Technologies

We are always ready to help your business. Let us talk.

Our Address

{{ $contactAddress }}

Call us Anytime

@if($contactWhatsapp) @endif

Send E-Mail

@if($contactHours->isNotEmpty())

Business Hours

@foreach($contactHours as $hoursLine)

{{ $hoursLine }}

@endforeach
@endif

Send us a message

@csrf @include('frontend.partials.contact-spam-fields')
Our Branches

Visit Our Office

We currently operate from one listed office. Reach out before visiting so the right team member can assist you.

Ndarama Technologies

HEAD OFFICE

{{ $contactAddress }}

@include('frontend.partials.newsletter') @endsection