{{-- Header --}}
@if($reviewFileId) @elseif($reviewBatchId) @else @endif

@if($reviewFileId && $this->currentFile) Review: {{ $this->currentFile->original_filename }} @elseif($reviewBatchId && $this->currentBatch) Batch: {{ $this->currentBatch->batch_name }} @else AI Invoice Import @endif

@if($this->currentBatch && !$reviewFileId) {{ ucfirst(str_replace('_', ' ', $this->currentBatch->display_status)) }} @endif
@if($reviewFileId && $this->currentFile) {{-- File Review View --}} @include('livewire.commission.partials.ai-invoice-file-review') @elseif($reviewBatchId && $this->currentBatch) {{-- Batch Files View --}} @include('livewire.commission.partials.ai-invoice-batch-files') @else {{-- Upload & Recent Batches View --}} @include('livewire.commission.partials.ai-invoice-upload') @endif