@extends('layouts.app') @section('title','Review Statement Import') @section('crumbs','Bank Transactions · Review import') @section('content')

Review — {{ $bank->display_name }} ({{ count($rows) }} rows)

@csrf
@foreach($rows as $i => $row) @php $m = $row['match']; $dup = $m && $m['reconciled']; @endphp @endforeach
DateStatement narrationDrCrSuggested matchAction
{{ fdate($row['date']) }} {{ $row['narration'] }}@if($row['reference']) {{ $row['reference'] }}@endif {{ $row['direction']==='Dr' ? money($row['amount']) : '' }} {{ $row['direction']==='Cr' ? money($row['amount']) : '' }} @if($m){{ $m['txn_no'] }} {{ $m['txn_date'] }} · {{ Str::limit($m['narration'] ?? '', 40) }} @if($dup)already reconciled@endif @else— new —@endif @if($m && !$dup) @endif
Back
@endsection