@extends('layouts.public') @section('title', 'SYSTRONICS — Site Map') @section('meta_description', 'Every page on the SYSTRONICS website, grouped the way the menu is grouped.') @php $companyPages = collect($sections['company'] ?? []); $legalSlugs = ['copyright', 'privacy', 'disclaimer', 'eula', 'legal']; $contactSlugs = ['contacts']; $companyLinks = $companyPages->reject(fn (array $page) => in_array($page['slug'], [...$legalSlugs, ...$contactSlugs], true)); $legalLinks = $companyPages->filter(fn (array $page) => in_array($page['slug'], $legalSlugs, true)); $contactLinks = $companyPages->filter(fn (array $page) => in_array($page['slug'], $contactSlugs, true)); $serviceLinks = collect($sections['services'] ?? []); $otherLinks = collect($sections['other'] ?? []); $yearReleases = collect($yearReleases ?? []); @endphp @section('content')
Navigation

Site Map

Every page on this site, grouped the way the menu is grouped.

Company

About the company

@foreach ($companyLinks as $page) {{ $page['title'] }} @endforeach @foreach ($yearReleases as $release) {{ $release['title'] }} @endforeach
Services

What we do

Services overview @foreach ($serviceLinks as $page) {{ $page['title'] }} @endforeach SYSTRONICS ERP & CRM Customizations
Contact

Reaching us

@foreach ($contactLinks as $page) {{ $page['title'] }} @endforeach Get Support Webinars Application Form Send us feedback
Legal

Terms and notices

@foreach ($legalLinks as $page) {{ $page['title'] }} @endforeach
Start here

Entry points

Home All Products Downloads @if ($yearRelease) {{ $yearRelease['title'] }} @endif @foreach ($otherLinks as $page) {{ $page['title'] }} @endforeach Site Map
Products

All {{ $products->count() }} applications

@foreach ($products as $product) {{ $product->name }} @endforeach

Cannot find what you need?

Ask the team directly — sales, support and development enquiries are answered six days a week.

Contact Information Get Support
@endsection