@extends('layouts/microfin_layout') @section('title', '| Samity Wise Opeing Info') @section('content') @include('successMsg')
{{-- div for Company --}} @php $company = DB::table('gnr_company') ->where('id', Auth::user()->company_id_fk) ->select('name', 'address') ->first(); @endphp {{ $branchName }}
{{ $samityName }}
Gender Wise Samity Info
{!! Form::open(['url' => '#', 'id' => 'genderSamityForm', 'method' => 'post']) !!} {!! Form::hidden('branchIdFk', $branchId, ['class' => 'form-control']) !!} {!! Form::hidden('samityIdFk', $samityId, ['class' => 'form-control']) !!} @php $sl = 0; @endphp @foreach ($productsWithGender as $item) @php $totalGenderRow = count($item->genderValues); $prod = 0; $sl++; @endphp @foreach ($item->genderValues as $key => $genderItem) @php $prod++; @endphp @if ($prod == 1) @endif @endforeach @endforeach
SL Loan Product Gender Cumulative
Name Loan Disburse Loan Recovered Loan No
{{ $sl }} {!! Form::hidden('loanProductId[]', $item->id, ['class' => 'form-control']) !!} {{ $item->name }} @if ($key == 1) Male @else Female @endif {!! Form::hidden('genderType[]', $key, ['class' => 'form-control']) !!} {!! Form::number('totalLoanAmount[' . $item->id . '][' . $key . ']', null, ['class' => 'form-control', 'style' => 'border: 1px solid #979898;']) !!} {!! Form::number('totalLoanRecovered[' . $item->id . '][' . $key . ']', null, ['class' => 'form-control','style' => 'border: 1px solid #979898;']) !!} {!! Form::number('totalLoanNumber[' . $item->id . '][' . $key . ']', null, ['class' => 'form-control','style' => 'border: 1px solid #979898;']) !!}
{!! Form::close() !!}
@endsection