{{-- resources/views/reports/cash-up.blade.php --}} @extends('layouts.app') @section('title', 'Cash Up Report') @section('page_title', 'Cash Up Report') @section('page_subtitle', $from->format('d M Y') . ' — ' . $to->format('d M Y')) @section('content') @include('reports.partials.nav') @include('reports.partials.filters', ['route' => 'reports.cash-up'])
No shifts in this period
| Shift | Opened By | Opened | Closed | Opening Float | Expected | Closing Float | Variance | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $shift->reference ?? 'SHF-' . $shift->id }} | {{ $shift->openedBy?->name ?? '—' }} | {{ $shift->opened_at?->format('d M H:i') }} | {{ $shift->closed_at?->format('d M H:i') ?? '—' }} | ${{ number_format($shift->opening_float, 2) }} | ${{ number_format($shift->expected_float ?? 0, 2) }} | ${{ number_format($shift->closing_float ?? 0, 2) }} | @if($shift->status === 'closed') {{ $variance >= 0 ? '+' : '' }}${{ number_format($variance, 2) }} @else — @endif | {{ ucfirst($shift->status) }} |