@extends('layouts.public') @php $title = $pageModel?->title ?: $fallbackTitle; $slug = $slug ?? ''; $legalSlugs = ['copyright', 'privacy', 'disclaimer', 'eula']; $serviceSlugs = ['customization-services', 'contract-development', 'solutions-analysis', 'implementation']; $isLegalDoc = in_array($slug, $legalSlugs, true); $isLegal = $isLegalDoc || $slug === 'legal'; $isService = in_array($slug, $serviceSlugs, true); $isShipping = $slug === 'allshippingprods'; $isContact = $slug === 'contacts'; $docIcon = ''; if ($isLegal) { $eyebrow = 'Legal'; $crumbs = [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Company'], ['label' => 'Legal'], ['label' => $title], ]; } elseif ($isContact) { $eyebrow = 'Contact Us'; $crumbs = [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Contact Us'], ['label' => $title], ]; } elseif ($isService) { $eyebrow = 'Services'; $crumbs = [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Services'], ['label' => $title], ]; } elseif ($isShipping) { $eyebrow = 'Products'; $crumbs = [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Products', 'url' => route('public.products.index')], ['label' => $title], ]; } else { $eyebrow = 'Company'; $crumbs = [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Company'], ['label' => $title], ]; } $tools = []; if ($isLegalDoc) { $tools = [ ['label' => 'Copyright Notice', 'url' => route('public.company', 'copyright'), 'active' => $slug === 'copyright', 'icon' => $docIcon], ['label' => 'Privacy Statement', 'url' => route('public.company', 'privacy'), 'active' => $slug === 'privacy', 'icon' => $docIcon], ['label' => 'Disclaimer', 'url' => route('public.company', 'disclaimer'), 'active' => $slug === 'disclaimer', 'icon' => $docIcon], ['label' => 'EULA', 'url' => route('public.company', 'eula'), 'active' => $slug === 'eula', 'icon' => $docIcon], ]; } elseif ($isService) { $tools = [ ['label' => 'Customization Services', 'url' => route('public.services', 'customization-services'), 'active' => $slug === 'customization-services'], ['label' => 'Contract Development', 'url' => route('public.services', 'contract-development'), 'active' => $slug === 'contract-development'], ['label' => 'Solutions Analysis', 'url' => route('public.services', 'solutions-analysis'), 'active' => $slug === 'solutions-analysis'], ['label' => 'Implementation', 'url' => route('public.services', 'implementation'), 'active' => $slug === 'implementation'], ]; } $hasBody = $pageModel && filled($pageModel->primaryHtml()); @endphp @section('title', $title.' — SYSTRONICS') @section('meta_description', $title.' | SYSTRONICS') @section('content') @include('public.partials.page-chrome', [ 'title' => $title, 'eyebrow' => $eyebrow, 'crumbs' => $crumbs, 'tools' => $tools, ])
@if ($hasBody)
{!! $pageModel->primaryHtml() !!}
@else

This page is being prepared. Reach us via the contact form meanwhile.

Contact SYSTRONICS
@endif
@if ($isLegal)

Questions about these terms?

Licensing, privacy and copyright enquiries are answered by the SYSTRONICS office in Dubai.

@else

Talk to the SYSTRONICS team

Sales, support and development enquiries are answered from two offices, six days a week.

@endif
Contact Information Get Support
@endsection