@php /** * WHAT IS LIVE RIGHT NOW, beside the chart that shows when the slots are booked. * * A running placement is an operational thing: it is out there, and either people are clicking it or * they are not. What it cost, when it was paid and for which period are a different question, asked * on the billing record — so none of that appears here. The owner reading this wants to know their * money is working, not to re-read the receipt. * * Ordered by clicks, so the placement earning its keep is the one at the top. * * @var array $active rows from CampaignController: label, headline, ctr, impressions, clicks, ends_at */ $active = $active ?? []; @endphp
@php /* THE SAME HEAD EVERY CHART CARD USES — .qm-chart-card-head with a .qm-head-chip in the title — so this sits beside the occupancy timeline as a sibling rather than something styled on its own terms. No caption: the title says what it is, and the cards beside it carry theirs on the chart's own toolbar row, which a list has none of. */ @endphp

{{ t_raw('vendor.campaigns.active_title') }}

@if ($active) @else

{{ t_raw('vendor.campaigns.active_empty') }}

@endif