@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('My GF')) @section('content') @include('employee.fund.partials.emp_fund_styles', ['wrap' => 'emp-gf'])
{{ __('View balance, statement, loans, and submit requests.') }}
| {{ __('Date') }} | {{ __('Type') }} | {{ __('Amount') }} | {{ __('Ref') }} | {{ __('Notes') }} |
|---|---|---|---|---|
| {{ $row->entry_date?->format('Y-m-d') }} | {{ $row->type }} | {{ number_format((float) $row->amount, 2) }} | @include('fund.partials.ledger_ref_cell', ['row' => $row]) | {{ $row->notes ?: '—' }} |
| @if($hasFilters ?? false) {{ __('No records match your filters.') }} @else {{ __('No records yet.') }} @endif | ||||
| {{ __('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.') }} | |||||||