{{ __('Salary & Deductions History') }} {{ __('Review your monthly salary, deductions, and penalty details over time') }}
@if($registrationDate)

{{ __('Employee since') }}: {{ $registrationDate->translatedFormat('F d, Y') }}

@endif

{{ __('Current Period Summary') }}

{{ \Carbon\Carbon::create($selectedYear, $selectedMonth, 1)->translatedFormat('F Y') }}
@if($monthlySalary > 0)

{{ __('Fixed Monthly Salary') }}

{{ __('Base salary') }}

{{ __('Your Salary') }}

{{ __('prorated for working days') }}

{{ __('Penalties Deducted') }}

-

{{ __('will be subtracted') }}

{{ __('Net Salary') }}

{{ __('final amount') }}

@else

{{ __('No salary information configured') }}

@endif
@if($currentMonthPenalties->count() > 0)

{{ __('Penalty Details') }}

@foreach($currentMonthPenalties as $penalty) @endforeach
{{ __('Date') }} {{ __('Type') }} {{ __('Details') }} {{ __('Amount') }}
{{ $penalty->occurred_on->translatedFormat('M d, Y') }} @if($penalty->type === 'late') {{ __('Late Check-in') }} @else {{ __('Break Overage') }} @endif @if($penalty->minutes_late > 0) {{ $penalty->minutes_late }} {{ __('minutes late') }} @endif @if($penalty->break_overage_minutes > 0) {{ $penalty->break_overage_minutes }} {{ __('minutes over break') }} @endif -
@endif @if($months->count())

{{ __('Historical Overview') }}

@foreach($months as $month) @endforeach
{{ __('Month') }} {{ __('Days Worked') }} {{ __('Total Working Days') }} {{ __('Fixed Salary') }} {{ __('Your Salary') }} {{ __('Penalties') }} {{ __('Net') }} {{ __('Late (min)') }} {{ __('Break Over (min)') }} {{ __('Entries') }}
{{ $month['label'] }} {{ $month['attendance_days'] }} {{ $month['working_days'] }} - {{ $month['late_minutes'] }} {{ $month['break_overage_minutes'] }} {{ $month['entries'] }}
@else

{{ __('No salary or penalty history available yet') }}

{{ __('Your penalty records will appear here once you start clocking in') }}

@endif