@php $rows = $readerTrendRows ?? []; $totals = $readerTrendTotals ?? ['new_registrations' => 0, 'cancellations' => 0, 'net_day' => 0]; $fromStr = $readerTrendFromStr ?? ''; $toStr = $readerTrendToStr ?? ''; $rangeError = $readerTrendRangeError ?? null; $actionUrl = route('scenario.workspace.show', [$account, $scenario, 'reader-trends']); @endphp

読者数推移

日別の新規登録・解除(配信停止)と、その日の終わり時点での有効読者数・累計読者数を表示します。

@if($rangeError)
{{ $rangeError }}
@endif
表示条件
@forelse($rows as $row) @empty @endforelse @if(count($rows) > 0) @endif
日付 新規登録数 解除数 当日増減
(新規−解除)
有効読者数
(日末)
総読者数
(日末・削除除く)
{{ $row['date_label'] }} {{ number_format($row['new_registrations']) }} {{ number_format($row['cancellations']) }} @if($row['net_day'] > 0)+@endif{{ number_format($row['net_day']) }} {{ number_format($row['active_readers']) }} {{ number_format($row['total_readers']) }}
この期間に表示する行がありません。
合計 {{ number_format($totals['new_registrations']) }} {{ number_format($totals['cancellations']) }} {{ number_format($totals['net_day']) }}