Routes

Manage connections between your feeds and channels

@forelse ($routes as $route)

{{ $route->feed?->name }} → {{ $route->platformChannel?->display_name ?? $route->platformChannel?->name }}

@if ($route->is_active) Active @else Inactive @endif
Priority: {{ $route->priority }} Feed: {{ $route->feed?->name }} Channel: {{ $route->platformChannel?->display_name ?? $route->platformChannel?->name }} Created: {{ $route->created_at->format('M d, Y') }}
@if ($route->platformChannel?->description)

{{ $route->platformChannel->description }}

@endif @if ($route->keywords->isNotEmpty())
Keywords
@foreach ($route->keywords as $keyword) {{ $keyword->keyword }} @endforeach
@else
No keyword filters - matches all articles
@endif
@empty

No routes

Get started by creating a new route to connect feeds with channels.

@endforelse
@if ($showCreateModal) @endif @if ($editingRoute) @endif