@extends('layouts.app') @section('content')

Dashboard

@if(session('success'))
{{ session('success') }}
@endif
Articles Fetched
{{ number_format($stats['articles_fetched']) }}
Articles Published
{{ number_format($stats['articles_published']) }}
Published Rate
{{ $stats['published_percentage'] }}%
@if($systemStatus['is_enabled'])
@else
@endif
System Status
{{ $systemStatus['status'] }}
@if(!$systemStatus['is_enabled'] && count($systemStatus['reasons']) > 0)

Reasons for being disabled:

    @foreach($systemStatus['reasons'] as $reason)
  • {{ $reason }}
  • @endforeach
@endif @if(!$systemStatus['is_enabled']) @endif

System Configuration

Feeds {{ $systemStats['active_feeds'] }}/{{ $systemStats['total_feeds'] }}
Channels {{ $systemStats['active_channels'] }}/{{ $systemStats['total_channels'] }}
Routes {{ $systemStats['active_routes'] }}/{{ $systemStats['total_routes'] }}
Recent Activity
View Logs
@endsection