@extends('layouts.admin') @section('title', $title ?? 'Release Naming Regex Test') @section('content')

{{ $title }}

Back to List
Test your release naming regex patterns against actual release data from your database.
Enter a newsgroup name to test against
Results to display
Max releases to query
Enter the regex pattern to test. Include delimiters and flags.
@if($data)
Test Results:
@if(count($data) > 0)
@foreach($data as $row) @endforeach
Release ID Original Name New Name Match
{{ $row['releaseID'] ?? $row['id'] ?? 'N/A' }} {{ \Illuminate\Support\Str::limit($row['oldName'] ?? $row['name'] ?? '', 80) }} @if(isset($row['newName']) && $row['newName']) {{ \Illuminate\Support\Str::limit($row['newName'], 80) }} @else @endif @if(isset($row['match']) && $row['match']) Match @else No Match @endif
Tested {{ count($data) }} releases. Review the matches above.
@else
No releases found for the specified group or no matches found.
@endif @endif
@endsection