{{ __('Daybook') }} - {{ $shop->name }} @if (session('status')) {{ session('status') }} @endif @if ($closure) {{ __('This day is already closed.') }} @endif
{{ __('Opening') }} {{ number_format((float) $summary['opening_balance'], 2) }}
{{ __('Cash In') }} {{ number_format((float) $summary['total_cash_in'], 2) }}
{{ __('Cash Out') }} {{ number_format((float) $summary['total_cash_out'], 2) }}
{{ __('Closing') }} {{ number_format((float) $summary['closing_balance'], 2) }}
{{ __('Manual Cash Adjustment') }}
@csrf {{ __('Post Adjustment') }}
{{ __('Close Day') }}
@csrf {{ __('Close Daybook') }}
{{ __('Day Entries') }}
@forelse ($entries as $entry) @empty @endforelse
{{ __('Time') }} {{ __('Type') }} {{ __('Amount') }} {{ __('Description') }}
{{ $entry->posted_at?->format('H:i') }} {{ strtoupper($entry->entry_type->value) }} {{ number_format((float) $entry->amount, 2) }} {{ $entry->description }}
{{ __('No entries for this date.') }}