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

Create Feed Routing

Route a feed to one or more channels.

@csrf
@error('feed_id')

{{ $message }}

@enderror
@forelse($channels as $channel)
id, old('channel_ids', [])) ? 'checked' : '' }} class="h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-gray-300 rounded">
@empty

No active channels available. Please create channels first.

@endforelse
@error('channel_ids')

{{ $message }}

@enderror @error('channel_ids.*')

{{ $message }}

@enderror

Higher numbers = higher priority (0-100)

@error('priority')

{{ $message }}

@enderror

Articles will be filtered to only include content matching these keywords

@error('keywords')

{{ $message }}

@enderror @error('keywords.*')

{{ $message }}

@enderror

JSON format for additional content filtering rules

@error('filters')

{{ $message }}

@enderror
Cancel
@if($feeds->isEmpty() || $channels->isEmpty())

Prerequisites Missing

To create routing, you need:

    @if($feeds->isEmpty())
  • At least one active feed
  • @endif @if($channels->isEmpty())
  • At least one active channel
  • @endif
@endif
@endsection