હપ્તો કે પેનલટી જમા કરો
@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
મેમ્બર અને લોન પસંદ કરો
-- લોન સિલેક્ટ કરો --
@foreach($loans as $loan)
{{ $loan->user->name }} (કુલ બાકી: Rs. {{ $loan->total_payable }})
@endforeach
પ્રકાર (Type)
હપ્તો (Installment)
પેનલટી (Penalty)
રકમ (Amount)
તારીખ (Date)
રેમાર્ક (Remark)
રકમ જમા કરો
છેલ્લા ટ્રાન્ઝેક્શન / હપ્તા લિસ્ટ
તારીખ
મેમ્બર નામ
પ્રકાર
રકમ
રેમાર્ક
@foreach($transactions as $trx)
{{ $trx->payment_date }}
{{ $trx->user->name ?? 'N/A' }}
{{ ucfirst($trx->type) }}
Rs. {{ $trx->amount }}
{{ $trx->remark ?? '-' }}
@endforeach