@extends('layouts.public') @section('title', 'Webinars โ€” SYSTRONICS') @section('meta_description', 'Live and recorded sessions on SYSTRONICS Sage 300 add-ons. Register for an upcoming webinar or request a session for your team.') @section('content') @include('public.partials.page-chrome', [ 'eyebrow' => 'Contact Us', 'title' => 'Webinars', 'lede' => 'Live and recorded sessions on SYSTRONICS Sage 300 add-ons.', 'crumbs' => [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Contact Us', 'url' => route('public.company', 'contacts')], ['label' => 'Webinars'], ], 'tools' => [ ['label' => 'Webinars', 'url' => route('public.webinars.index'), 'active' => true], ['label' => 'Request a webinar', 'url' => route('public.webinars.request')], ], ])
@unless ($settings->show_webinars)

The webinar schedule is currently hidden.

@else
Schedule

Upcoming

@forelse ($upcoming as $webinar) {{ $webinar->description ?: 'Webinar #'.$webinar->id }} {{ $webinar->scheduledAt()?->format('Y-m-d H:i') ?: 'โ€”' }}@if ($webinar->product) ยท {{ $webinar->product }}@endif @empty

No upcoming webinars.

@endforelse
Archive

Past

@forelse ($past as $webinar) {{ $webinar->description ?: 'Webinar #'.$webinar->id }} {{ $webinar->scheduledAt()?->format('Y-m-d H:i') ?: 'โ€”' }} @empty

No past webinars.

@endforelse
@endunless

Need a session for your team?

Tell us which products you want covered. We will contact you within two business days.

Request a webinar Contact Information
@endsection