@extends('layouts.app') @section('title', 'Cash Drawer') @section('content')
Cashier control
Opening float, tender collections, cash outs, physical count and variance.
Current shift
Opening float
AED {{ number_format((float) $openSession->opening_cash, 2) }}
Opened
{{ $openSession->opening_time->format('d M, H:i') }}
| Cashier / shift | Opening | Cash sales | Expected | Actual | Variance | Status |
|---|---|---|---|---|---|---|
{{ $session->cashier?->name }} {{ $session->opening_time->format('d M Y H:i') }} @if($session->closing_time)→ {{ $session->closing_time->format('H:i') }}@endif | AED {{ number_format((float) $session->opening_cash, 2) }} | AED {{ number_format((float) $session->cash_sales, 2) }} | AED {{ number_format((float) $session->expected_cash, 2) }} | AED {{ number_format((float) $session->actual_cash, 2) }} | AED {{ number_format((float) $session->variance, 2) }} | {{ $session->status }} |
| No cash sessions recorded. | ||||||