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

Setup Complete!

Great! You've successfully configured Lemmy Poster. Now activate the system to start monitoring feeds and posting articles.

@if($systemStatus['is_enabled'])

System Status

{{ $systemStatus['status'] }}

@else

Ready to Activate

System is configured but not active

@endif
@if(!$systemStatus['is_enabled'])
@csrf @method('PUT')
@else ✓ Active @endif
@if(!$systemStatus['is_enabled'] && count($systemStatus['reasons']) > 0)

System will be enabled once activated. Current setup status:

    @foreach($systemStatus['reasons'] as $reason) @if($reason !== 'Manually disabled by user')
  • {{ str_replace('No active', 'Active', $reason) . ' ✓' }}
  • @endif @endforeach
@endif

What happens next?

  • • Your feeds will be checked regularly for new articles
  • • New articles will be automatically posted to your channels
  • • You can monitor activity in the Articles and Logs sections

Want more control?

Set up routing rules to control which articles get posted where based on keywords, titles, or content.

Configure Routing →
@endsection