@extends('layouts.app') @section('title', 'Live Sessions') @section('content') {{-- Hero Section --}}
Live Shopping Experience

Shop Live with Promoters

Watch real-time product demos, ask questions, and shop instantly during live sessions

{{-- Upcoming Sessions --}} @if($upcomingSessions->count() > 0)

Upcoming Sessions

@foreach($upcomingSessions as $session)
@if($session->product && $session->product->primaryImage) @else @endif

{{ $session->title }}

{{ $session->promoter->name }}

{{ $session->scheduled_at->format('M d, h:i A') }}

@endforeach
@endif {{-- Active Live Sessions --}}

Live Now

@if($activeSessions->count() > 0) @if($activeSessions->hasPages())
{{ $activeSessions->links() }}
@endif @else

No Live Sessions Right Now

Check back later or browse our upcoming sessions

@endif
@endsection