@extends('layouts.public') @section('title', ($webinar->description ?: 'Webinar').' โ€” SYSTRONICS') @section('meta_description', ($webinar->description ?: 'SYSTRONICS webinar').' โ€” live and recorded sessions on Sage 300 add-ons.') @section('content') @include('public.partials.page-chrome', [ 'eyebrow' => 'Webinars', 'title' => $webinar->description ?: ('Webinar #'.$webinar->id), 'lede' => collect([ $webinar->scheduledAt()?->format('Y-m-d H:i') ?: 'โ€”', $webinar->timezone ?: null, $webinar->product ?: null, ])->filter()->implode(' ยท '), 'crumbs' => [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Webinars', 'url' => route('public.webinars.index')], ['label' => $webinar->description ?: ('Webinar #'.$webinar->id)], ], 'tools' => [ ['label' => 'Webinars', 'url' => route('public.webinars.index')], ['label' => 'Request a webinar', 'url' => route('public.webinars.request')], ], ])
@if ($webinar->presenter)

Presenter: {{ $webinar->presenter }}

@endif @if ($webinar->isUpcoming()) Register @elseif ($webinar->youtube_link) Watch recording @else

This session is no longer open for registration.

@endif

Need a session for your team?

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

Request a webinar All webinars
@endsection