@extends('manager.layouts.admin', ['title' => __('Liquidate And Non-Liquate Account')]) @section('content') @if(count($errors) > 0)
@endif

All Datas

@if(count($liquidateAndNonLiquate)>0) @foreach($liquidateAndNonLiquate as $key => $htmlTableAllDatas) @endforeach
SR.NO Login Number Party Name Client Name Liquidate Non-liquidate Credit Equity Ratio
1 {{$htmlTableAllDatas['login']}} {{$htmlTableAllDatas['partyName']}} {{$htmlTableAllDatas['name']}} @if($htmlTableAllDatas['country'] == 'India') Liquidate @else - @endif @if($htmlTableAllDatas['country'] == 'U.A.E.') Non-Liquidate @else - @endif {{number_format($htmlTableAllDatas['credit'],2)}} {{number_format($htmlTableAllDatas['equity'],2)}} {{(float)substr($htmlTableAllDatas['zip_code'],-3)}}
@endif
@endsection