{{ $label }}

{{ $from }} — {{ $to }}

@if ($canExport) Export CSV @endif
@if ($branches->isNotEmpty()) @endif
@if ($type === 'meetings')
Total
{{ $data['total'] }}
@foreach ($data['rows'] as $row) @endforeach
TitleStatusPeakRSVP
{{ $row['title'] }} {{ $row['status'] }} {{ $row['peak_participants'] }} {{ $row['accepted'] }}/{{ $row['invitations'] }}
@elseif ($type === 'users')
Unique participants
{{ $data['unique_participants'] }}
Unique hosts
{{ $data['unique_hosts'] }}
@elseif ($type === 'invitations')
Sent
{{ $data['total'] }}
Accepted
{{ $data['accepted'] }}
Declined
{{ $data['declined'] }}
Accept rate
{{ $data['acceptance_rate'] }}%
@elseif ($type === 'branches')
@foreach ($data as $row) @endforeach
BranchScheduledSessionsMinutesRecordings
{{ $row['branch_name'] }} {{ $row['meetings_scheduled'] }} {{ $row['sessions_held'] }} {{ $row['total_minutes'] }} {{ $row['recordings_count'] }}
@else
@foreach ($data as $key => $value) @if (! is_array($value))
{{ str_replace('_', ' ', $key) }}
{{ is_numeric($value) && $key === 'recording_storage_bytes' ? number_format($value / 1024 / 1024, 1).' MB' : $value }}
@endif @endforeach
@endif