@extends('employee.layouts.app') @section('title', get_setting('site_name').' | My PF') @section('content')
| {{ __('Date') }} | {{ __('Type') }} | {{ __('Amount') }} | {{ __('Ref') }} | {{ __('Notes') }} |
|---|---|---|---|---|
| {{ $row->entry_date?->format('Y-m-d') }} | {{ $row->type }} | {{ number_format((float)$row->amount, 2) }} | {{ $row->ref_type }} @if($row->ref_id) (#{{ $row->ref_id }}) @endif | {{ $row->notes }} |
| {{ __('No records') }} | ||||
| {{ __('Loan') }} | {{ __('Status') }} | {{ __('Principal') }} | {{ __('Outstanding') }} | {{ __('Period') }} | {{ __('Progress') }} | {{ __('Requested') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|
| #{{ $loan->id }} | {{ ucfirst($loan->status) }} | {{ number_format((float) $loan->principal, 2) }} | {{ number_format((float) $loan->outstanding, 2) }} | {{ $loan->loan_period_months ? $loan->loan_period_months.' '.__('mo') : '—' }} | @if($totalInst > 0) {{ $paidCount }}/{{ $totalInst }} {{ __('paid') }} @else — @endif | {{ $loan->requested_at?->format('Y-m-d') ?? '—' }} | |
| {{ __('No loan records yet.') }} | |||||||