@extends('layouts.app') @section('title', 'Till Reconciliation Log') @section('content')

Till Reconciliation Log

@forelse ($reconciliations as $r) @empty @endforelse
DateStaffExpectedCountedVarianceNotes
{{ $r->shift_date->format('d M Y') }} {{ $r->user->name }} {{ number_format($r->expected_cash, 2) }} {{ number_format($r->counted_cash, 2) }} {{ number_format($r->variance, 2) }} {{ $r->notes }}
No reconciliations recorded yet.
{{ $reconciliations->links() }} @endsection