@extends('layouts.promoter') @section('page-title', $session->title) @section('content')

{{ $session->title }}

Back to Sessions
@if($session->status === 'live')
LIVE {{ $session->viewers_count }} viewers
@endif @if($session->product)
{{ $session->product->name }}

{{ $session->product->name }}

${{ number_format($session->product->price, 2) }}

@if($session->product->compare_price) ${{ number_format($session->product->compare_price, 2) }} @endif
@endif @if($session->description)

{{ $session->description }}

@endif

Session Chat

Session chat messages will appear here

Session Stats

Status:{{ $session->status }}
Viewers:{{ $session->viewers_count }}
Sales:{{ $session->sales_count }}
Revenue:${{ number_format($session->revenue ?? 0, 2) }}
Commission:${{ number_format($session->commission ?? 0, 2) }}
Started:{{ $session->started_at?->format('H:i') ?? 'Not started' }}
@if($session->status === 'live')
@csrf
@endif
@endsection