@php $branches = $branches ?? \App\Models\SiteSetting::getBranches(); $contact = $contact ?? [ 'phone' => \App\Models\SiteSetting::getValue('phone_primary', '02039623456'), 'email' => \App\Models\SiteSetting::getValue('email_primary', 'info@fbaukltd.com'), 'whatsapp' => \App\Models\SiteSetting::getValue('whatsapp', '447000000000'), 'working_hours' => \App\Models\SiteSetting::getValue('working_hours', 'Mon – Fri: 9:00 AM – 6:00 PM'), ]; $phoneDisplay = $contact['phone'] ?? ''; $phoneTel = preg_replace('/\D+/', '', $phoneDisplay) ?: ''; $whatsappRaw = preg_replace('/\D+/', '', $contact['whatsapp'] ?? '') ?: ''; $emailDisplay = $contact['email'] ?? ''; $phoneHref = function (string $label): string { $digits = preg_replace('/\D+/', '', $label) ?: ''; return $digits !== '' ? 'tel:'.$digits : '#'; }; @endphp
Get In Touch

Contact Our Advisors

Have questions? Our friendly team is ready to help you take the next step towards your UK university journey.

@if(count($branches))
Our Offices

Visit Our Branches

Find your nearest FBA UK LTD office for in-person guidance and support.

@foreach($branches as $branch)

{{ $branch['city'] }}@if(!empty($branch['country'])), {{ strtoupper($branch['country']) }}@endif

Our Address

{{ $branch['address'] ?: '—' }}

Phone Number
@if(!empty($branch['phones']))
    @foreach($branch['phones'] as $phone)
  • {{ $phone }}
  • @endforeach
@else

@endif
Email Us
@if(!empty($branch['email']))

{{ $branch['email'] }}

@else

@endif
@endforeach
@endif