@island('system-overview')

System Overview

Active Feeds

{{ $this->systemStats['active_feeds'] }} /{{ $this->systemStats['total_feeds'] }}

Platform Accounts

{{ $this->systemStats['active_platform_accounts'] }} /{{ $this->systemStats['total_platform_accounts'] }}

Platform Channels

{{ $this->systemStats['active_platform_channels'] }} /{{ $this->systemStats['total_platform_channels'] }}

Active Routes

{{ $this->systemStats['active_routes'] }} /{{ $this->systemStats['total_routes'] }}

@endisland

Article Statistics

@foreach ($this->presets as $value => $label) @endforeach
@error('from')

{{ $message }}

@enderror @error('to')

{{ $message }}

@enderror @island('article-statistics')
! $rangeIsValid])>

Articles Fetched

{{ $this->articleStats['articles_fetched'] }}

Articles Published

{{ $this->articleStats['articles_published'] }}

Published Rate

{{ $this->articleStats['published_percentage'] }}%

@endisland

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

Recent Activity

View all
@include('livewire.partials.activity-panel', ['entries' => $this->recentActivity])