@extends('layouts/microfin_layout') @section('title', '|Pass Book Balance') @section('content')
{{-- div for Company --}} @php $company = DB::table('gnr_company')->where('id', Auth::user()->company_id_fk)->select('name','address')->first(); @endphp {{$company->name}}
{{$company->address}}
{{-- Advance Due List --}} @foreach ($SamityInfos as $key => $SamityInfo) Samity Name: {{$SamityInfo->name}} @endforeach
Back To The Pass Book List
@php $Counter = 0; $Month = 0; @endphp @foreach ($SamityInformations as $key => $SamityInformation) @endforeach
Member Information
Loan Information
Savings Information
Member ID
Member Name
Loan ID
Outstanding
Due
Savings ID
Balance
{{$SamityInformation->memberCode}} {{$SamityInformation->name}} {{$SamityInformation->loanCode}} {{number_format($SamityInformation->outstanding,2)}} {{number_format($SamityInformation->due,2)}} {{$SamityInformation->savingsCode}} {{number_format($SamityInformation->savingsBalance,2)}}
@endsection