@extends('layouts.app') @section('title','Settings') @section('page-title','System Settings') @section('content')
Credit Union Settings
Configure system-wide parameters and exchange rates
@csrf
Organisation Info
Dual Currency — Exchange Rate
L$ per US$1
L$1 = US${{ number_format(1/($settings['lrd_exchange_rate']->value ?? 195),4) }}
@foreach([100,500,1000] as $usd)
US$ {{ number_format($usd) }} L$ {{ number_format($usd * ($settings['lrd_exchange_rate']->value ?? 195), 2) }}
@endforeach
Note: Rate changes apply to new transactions only. Existing records retain the rate at time of creation.
Loan Configuration
Per annum
× savings balance (USD)
Before loan eligibility
Role Permissions
@foreach([ ['Administrator','Full system access'], ['Finance Officer','Savings, loans, repayments'], ['Auditor','Read-only — reports only'], ['Member','Self-service portal only'], ] as [$title,$desc])
{{ $title }}
{{ $desc }}
@endforeach
Salary Debit Export

Monthly deduction schedule for all active loans in USD and LRD.

@push('scripts') @endpush @endsection