@extends('layouts.admin') @section('title', 'Reconciliation Details') @section('content')

Reconciliation: {{ $rec->bank_name }} ({{ $rec->statement_period }})

Uploaded on {{ $rec->uploaded_at->format('M d, Y') }}

Back
@forelse($lines as $line) @empty @endforelse
Date Description Amount Status Actions
{{ $line->txn_date->format('M d, Y') }} {{ $line->description }} {{ number_format($line->amount, 2) }} {{ $line->is_matched ? 'Matched' : 'Unmatched' }}
@csrf @method('PUT')
No transactions found.
{{ $lines->appends(request()->query())->links() }}
@endsection