@extends('admin.layouts.app') @section('title', 'EMI CREDITS | Create Loan') @section('page-title', 'Create Loan') @section('page-description') Create and manage a new client loan @endsection @push('styles') @endpush @php $currencySettings = \App\Models\SystemSetting::query()->first(); $currencySymbol = $currencySettings?->currency_symbol ?? '₹'; $currencyDecimals = (int) ($currencySettings?->currency_decimal_places ?? 2); $currencyRound = (bool) ($currencySettings?->currency_round_display ?? false); /* |-------------------------------------------------------------------------- | Interest Settings |-------------------------------------------------------------------------- | | Interest ON/OFF is controlled from Loan Settings. | Each Loan Type has its own interest_rate. | */ $interestEnabled = (bool) ($settings->interest_enabled ?? false); @endphp @section('content')
Create a new loan for an existing client.