@extends('layouts.app')
@section('title', 'Till Reconciliation')
@section('content')
Reconcile Till — {{ \Carbon\Carbon::parse($today)->format('d M Y') }}
Expected Cash (not yet reconciled today)
{{ number_format($expectedCash, 2) }}
@if ($existing)
You already reconciled {{ number_format($existing->counted_cash, 2) }} today
(variance: {{ number_format($existing->variance, 2) }}).
Submitting again reconciles whatever cash has come in since then.
@endif
@endsection