@extends('layouts.app') @section('title', 'Cash registers') @section('content')
Tills for walk-in payments, and the shifts run on them.
| Register | Branch | Float | Last shift | Status | Open a shift |
|---|---|---|---|---|---|
| {{ $register->name }} | {{ $register->branch?->name ?: '—' }} | {{ money($register->opening_balance) }} |
@if ($last)
{{ $last->opened_at?->format('d M H:i') }}
@if ($last->status === 'closed')
variance {{ money($last->variance) }}
@endif
@else — @endif
|
@if ($open) Open @else Closed @endif | @if (! $open) @else Go to shift @endif |