{{-- ========================= SEO (SAFE / SINGLE OUTPUT) - No foreach loops in - Proper meta description - Correct og/twitter URL uses current URL - Canonical uses current URL ========================== --}} @php // Prefer controller-provided vars if available // $pageTitle, $pageDescription, $pageImage, $canonical // Fallback to view vars you already use (e.g. $PageTitle) $fallbackTitle = $PageTitle ?? null; // Your view passes $Categories; sometimes it's a collection $firstItem = null; if (isset($Categories)) { try { $firstItem = is_iterable($Categories) ? ($Categories[0] ?? null) : $Categories; } catch (\Throwable $e) { $firstItem = null; } } $currentUrl = url()->current(); $siteName = 'Decomagna Kenya'; $defaultTitle = 'Quick-Step Flooring Kenya - Decomagna Limited'; $defaultDescription = 'Official distributors of Quick-StepĀ® flooring in Kenya. Premium laminate floors, engineered wood & vinyl flooring made in Belgium. Professional installation services across Kenya.'; $defaultImage = asset('uploads/slider/download-slider-8.webp'); $computedTitle = $pageTitle ?? ($firstItem?->title ? ($firstItem->title . ' - ' . $siteName) : null) ?? ($fallbackTitle ? ($fallbackTitle . ' - ' . $siteName) : null) ?? $defaultTitle; $computedDescription = $pageDescription ?? ($firstItem?->meta ?: null) ?? $defaultDescription; $computedImage = $pageImage ?? ($firstItem?->image ? url('/uploads/categories/' . $firstItem->image) : null) ?? $defaultImage; $canonicalUrl = $canonical ?? $currentUrl; @endphp {{ $computedTitle }} {{-- Open Graph --}} {{-- Twitter --}} {{-- Google tags --}} @include('front.google-tags')
@include('front.sidebar')
  • Mon to Fri 8:30 am to 5:00pm
@yield('content') @include('front.footer')
@include('front.schema')