@extends('manager.layouts.admin', ['title' => __('Scalping Accounts Detail')]) @section('content')

All Datas

@if(count($scalpingAccountDetailedData)>0) @foreach($scalpingAccountDetailedData as $key => $value) @endforeach
Party Name Login Client Name Credit Equity Ratio City D/L Currency
{{$value['partyName']}} {{$value['login']}} {{$value['name']}} {{round($value['credit'],0)}} {{round($value['equity'],0)}} {{(float)substr($value['zip_code'],-3)}} {{$value['city']}} @if( $value['country'] == 'India' ) {{"Liquidate"}} @endif @if( $value['country'] == 'U.A.E.' ) {{"Non Liquidate"}} @endif {{$value['currency']}}
@endif
@endsection