@php use Carbon\Carbon; @endphp
{{ __('Finance year') }}: {{ $periodLabel ?? '' }}
{{ __('Employee') }}: {{ $staff->user?->name }} ({{ $staff->user?->id }})
{{ __('Department') }}: {{ $staff->department?->name ?? '—' }}
{{ __('Branch') }}: {{ $staff->warehouse?->name ?? '—' }}
{{ __('Issued') }}: {{ Carbon::now()->format('Y-m-d H:i') }}
| {{ __('Opening balance') }} | {{ number_format($openingBalance ?? 0, 2) }} |
|---|---|
| {{ __('Closing balance') }} | {{ number_format($closingBalance, 2) }} |
| {{ __('Type') }} | {{ __('Amount') }} |
|---|---|
| {{ $type }} | {{ number_format((float) $amt, 2) }} |
| {{ __('No ledger movements in this finance year.') }} | |
{{ __('This document is generated from system ledger entries for the selected finance year. For disputes, contact HR.') }}