| {{ __('Recorded') }} | {{ __('Effective') }} | {{ __('Type') }} | {{ __('Increment') }} | {{ __('Status') }} | {{ __('By') }} |
|---|---|---|---|---|---|
| {{ $r->created_at?->format('Y-m-d') }} | {{ $r->effective_date?->format('Y-m-d') ?? '—' }} | {{ $r->review_type ?? '—' }} | {{ $r->increment_mode ? ucfirst($r->increment_mode) : '—' }} {{ $r->increment_value !== null ? number_format((float) $r->increment_value, 2) : '' }} | @if($r->status === \App\Models\SalaryReview::STATUS_APPROVED) {{ __('Applied') }} @elseif($r->status === \App\Models\SalaryReview::STATUS_REJECTED) {{ __('Rejected') }} @else {{ __('Pending') }} @endif | {{ $r->createdBy?->name ?? '—' }} |
| {{ __('Date') }} | {{ __('Designation') }} | {{ __('Department') }} |
|---|---|---|
| {{ $p->effective_date?->format('Y-m-d') ?? $p->created_at?->format('Y-m-d') }} | {{ $p->fromDesignation?->name ?? '—' }} → {{ $p->toDesignation?->name ?? '—' }} | {{ $p->fromDepartment?->name ?? '—' }} → {{ $p->toDepartment?->name ?? '—' }} |
| {{ __('Branch') }} | {{ __('Joined') }} | {{ __('Left') }} | {{ __('Duration') }} | {{ __('Status') }} |
|---|---|---|---|---|
| {{ $tenure->branch?->name ?? '—' }} | {{ $tenure->joined_at?->format('Y-m-d') ?? '—' }} | {{ $tenure->isCurrent() ? __('Present') : ($tenure->left_at?->format('Y-m-d') ?? '—') }} | @if($tenure->hasStarted()) {{ $tenure->durationLabel() }} ({{ $tenure->durationDays() }}d) @else {{ $tenure->durationLabel() }} @endif | @if($tenure->isCurrent()) {{ __('Current') }} @else {{ __('Past') }} @endif |
| {{ __('Applied') }} | {{ __('Amount') }} | {{ __('Paid') }} | {{ __('Remaining') }} | {{ __('Duration') }} | {{ __('Status') }} |
|---|---|---|---|---|---|
| {{ $advance->apply_date ? \Carbon\Carbon::parse($advance->apply_date)->format('Y-m-d') : ($advance->created_at?->format('Y-m-d') ?? '—') }} | {{ number_format((float) $advance->amount, 2) }} | {{ number_format((float) $advance->paid_amount, 2) }} | {{ number_format((float) $advance->remaining_amount, 2) }} | {{ $advance->duration }} {{ __('mo') }} | @if((int) $advance->status !== 1) {{ __('Pending') }} @elseif($advance->remaining_amount > 0) {{ __('Active') }} @else {{ __('Closed') }} @endif |
| {{ __('Recorded') }} | {{ __('Assign Date') }} | {{ __('Asset') }} | {{ __('Category') }} | {{ __('Qty') }} | {{ __('Status') }} | {{ __('Return') }} |
|---|---|---|---|---|---|---|
| {{ $a->created_at?->format('Y-m-d') }} | {{ $a->assign_date ? \Carbon\Carbon::parse($a->assign_date)->format('Y-m-d') : '—' }} | {{ $a->asset_item?->name ?? '—' }} | {{ $a->asset_category?->name ?? '—' }} | {{ $a->qty }} | {{ (int) $a->status === 1 ? __('Active') : __('Inactive') }} | {{ (int) $a->return === 1 ? __('Returned') : __('Not Returned') }} |