Daily Sales History

View and manage historical closed days

@forelse($shifts as $shift) @empty @endforelse
Date Status Cashier Total Variance Credit Approved Closed At Actions
{{ $shift->close_date }}
@if($shift->daily_close_status === 'closed') Closed @elseif($shift->daily_close_status === 'reopened') Reopened @else {{ ucfirst($shift->daily_close_status) }} @endif
{{ $shift->cashier->name ?? '-' }}
{{ currency_symbol() }}{{ number_format($shift->total_variance, 2) }}
@if($shift->credit_approved) @else @endif
{{ $shift->closed_at ? $shift->closed_at->format('M d, Y h:i A') : '-' }}
@can('cash-register.reopen-day') @if($shift->daily_close_status === 'closed') @endif @endcan
No closed days found
@if($shifts->hasPages())
{{ $shifts->links() }}
@endif
@push('scripts') @endpush