Fetched vs Published
@island('articles-trend')
@include('livewire.partials.trend-panel', [
'island' => 'articles-trend',
'result' => $this->articlesTrend,
'emptyMessage' => 'No articles or publications in this range.',
'tooWideMessage' => 'This range is too wide to chart by day. Pick a range under two years.',
])
@endisland
Approval Rate
@island('approval-rate')
@include('livewire.partials.trend-panel', [
'island' => 'approval-rate',
'result' => $this->approvalRate,
'emptyMessage' => 'No approval decisions in this range.',
'tooWideMessage' => 'This range is too wide to chart by day. Pick a range under two years.',
'suffix' => '%',
'max' => 100,
])
@endisland
Publish Success Rate
@island('publish-success-rate')
@include('livewire.partials.trend-panel', [
'island' => 'publish-success-rate',
'result' => $this->publishSuccessRate,
'emptyMessage' => 'No publish attempts in this range.',
'tooWideMessage' => 'This range is too wide to chart by day. Pick a range under two years.',
'suffix' => '%',
'max' => 100,
])
@endisland
Articles per Feed
@island('articles-per-feed')
@include('livewire.partials.breakdown-panel', [
'result' => $this->articlesPerFeed,
'emptyMessage' => 'No feeds are configured yet.',
])
@endisland
Publications per Channel
@island('publications-per-channel')
@include('livewire.partials.breakdown-panel', [
'result' => $this->publicationsPerChannel,
'emptyMessage' => 'No channels are configured yet.',
])
@endisland
@include('livewire.partials.activity-panel', ['entries' => $this->recentActivity])