@extends('layouts.public') @section('title', 'Currently Supported Versions — SYSTRONICS') @section('meta_description', 'Currently supported SYSTRONICS product versions for Sage 300, listed by product with compatible Sage 300 releases.') @section('content')
Products

Currently Supported Versions

These are the SYSTRONICS shipping versions currently marked as supported. Each line shows the product code, product version, and the compatible Sage 300 version.

Product list Supported versions Version releases
{{ $entries->count() }} {{ $entries->count() === 1 ? 'product' : 'products' }}

Supported shipping versions

@forelse ($entries as $entry) @php $product = $entry['product']; $code = strtolower($product->code); $slogan = $productSlogans[$code] ?? ''; $title = \App\Domain\Catalog\Support\ProductMarketingCopy::catalogTitle($product->code, $product->name); $href = route('public.products.show', $product).'#versions'; @endphp
{{ $title }} {{ strtoupper($product->code) }}
@if ($slogan !== '')

{{ $slogan }}

@endif
    @foreach ($entry['versions'] as $row)
  • {{ $row->shippingCode() }}
  • @endforeach
@empty

No currently supported versions are published yet.

@endforelse
@endsection