@extends('layouts.app') @section('title', 'PACA Rebuttals') @section('page-title', 'PACA — Rebuttal Library') @section('content')
← PACA Admin /Rebuttals
{{-- Add rebuttal form --}}

+ Add New Rebuttal

@csrf
{{-- Existing rebuttals --}}

All Rebuttals ({{ $rebuttals->total() }})

@forelse($rebuttals as $r)
@if($r->sector) {{ $r->sector->icon }} {{ $r->sector->name }} @endif {{ ucfirst($r->evidence_grade) }} @if($r->is_likely) ⚠ Likely @endif
"{{ Str::limit($r->claim, 120) }}"
{{ Str::limit($r->rebuttal, 200) }}
@csrf @method('DELETE')
@empty

🛡️

No rebuttals yet. Add the first one above.

@endforelse
@if($rebuttals->hasPages())
{{ $rebuttals->links() }}
@endif
@endsection