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

Feed Routing

Manage how feeds are routed to channels

Create New Routing
@if(session('success'))
{{ session('success') }}
@endif

Feeds → Channels

Active feed-to-channel routing

@forelse($feeds as $feed) @if($feed->channels->count() > 0)
@if($feed->type === 'rss') @else @endif {{ $feed->name }} {{ $feed->channels->count() }} channel{{ $feed->channels->count() !== 1 ? 's' : '' }}
@foreach($feed->channels as $channel)
{{ $channel->name }} ({{ $channel->platformInstance->name }}) @if(!$channel->pivot->is_active) Inactive @endif @if($channel->pivot->priority > 0) Priority: {{ $channel->pivot->priority }} @endif
@csrf
Edit
@csrf @method('DELETE')
@endforeach
@endif @empty
No feed routing configured
@endforelse

Channels ← Feeds

Channels and their connected feeds

@forelse($channels as $channel) @if($channel->feeds->count() > 0)
{{ $channel->name }} ({{ $channel->platformInstance->name }}) {{ $channel->feeds->count() }} feed{{ $channel->feeds->count() !== 1 ? 's' : '' }}
@foreach($channel->feeds as $feed)
@if($feed->type === 'rss') @else @endif {{ $feed->name }} @if(!$feed->pivot->is_active) Inactive @endif
Edit
@endforeach
@endif @empty
No channels with feeds
@endforelse
@if($feeds->where('channels')->isEmpty() && $channels->where('feeds')->isEmpty())

No routing configured

Connect your feeds to channels to start routing content.

Create First Routing
@endif
@endsection