@extends('layouts.admin') @section('title', $title ?? 'Category Regex List') @section('content')

{{ $title }}

Add New Regex

This page lists regular expressions used for categorizing releases.
You can recategorize all releases by running misc/update/update_releases 6 true

@csrf
@if($regex && count($regex) > 0) @if(method_exists($regex, 'links'))
{{ $regex->onEachSide(5)->links() }}
@endif
@foreach($regex as $row) @endforeach
ID Group Description Regex Ordinal Status Category Actions
{{ $row->id }} {{ $row->group_regex }} {{ \Illuminate\Support\Str::limit($row->description, 50) }} {{ \Illuminate\Support\Str::limit(htmlspecialchars($row->regex), 50) }} {{ $row->ordinal }} @if($row->status == 1) Active @else Disabled @endif {{ $row->categories_id }}
@if(method_exists($regex, 'links'))
{{ $regex->onEachSide(5)->links() }}
@endif @else
No regex patterns found. Try a different search term or add a new regex.
@endif
@push('scripts') @endpush @endsection