@extends('admin.layouts.admin', ['title' => __('Balances Sheet Report')]) @section('content') @if(count($errors) > 0)
@endif
@if(count($party)>0) @foreach($party as $key => $htmlTableAllDatas) @endforeach
Sr No Party Name Partner Name PNL(INR) PNL(USD) Total(INR) View
{{$key+1}} {{$htmlTableAllDatas['partyName']}} {{$partner}} {{$htmlTableAllDatas['inr']}} {{$htmlTableAllDatas['usd']}} {{ $htmlTableAllDatas['total'] }}            
Total {{$totalINR}} {{$totalUSD}} {{$total}}
@endif
@endsection