@extends('layouts.admin') @section('title', $title ?? 'Release Naming Regex Test') @section('content')
| 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 |