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

Edit Routing

{{ $feed->name }} → {{ $channel->name }} ({{ $channel->platformInstance->name }})

@csrf @method('PUT')

Routing Details

Feed:
@if($feed->type === 'rss') @else @endif {{ $feed->name }}
Channel:
{{ $channel->name }} ({{ $channel->platformInstance->name }})
pivot->is_active) ? 'checked' : '' }} class="h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-gray-300 rounded">

Higher numbers = higher priority (0-100)

@error('priority')

{{ $message }}

@enderror

JSON format for content filtering rules

@error('filters')

{{ $message }}

@enderror

Filter Examples

You can use filters to control which content gets routed:

  • {"keywords": ["tech", "AI"]} - Include only articles with these keywords
  • {"exclude_keywords": ["sports"]} - Exclude articles with these keywords
  • {"min_length": 500} - Minimum article length
  • {"max_age_hours": 24} - Only articles from last 24 hours
@csrf @method('DELETE')
Cancel
@endsection