fixing freedcamp bugs

This commit is contained in:
Ritikesh yadav
2024-05-02 15:22:44 +05:30
parent 77cbdf150f
commit 2a7d39738d
2 changed files with 5 additions and 2 deletions

View File

@@ -49,6 +49,7 @@ class DashboardController extends Controller
//
$marketPlaceAIFSellerData = $this->getMarketplaceAIFSellerData(1);
$marketPlaceFRESellerData = $this->getMarketplaceFRESellerData(1);
// dd($marketPlaceFRESellerData);
$marketPlaceOPSellerData = $this->getMarketplaceOPSellerData();
$totalInvestmentTillDate = '₹ ' . $this->IND_money_format($currentInvestmentProduct['totalInvestmentInInt'] + $reedemedInvestmentProduct['totalInvestmentInInt']);
return view('Frontend.Pages.profile.dashboard', compact('currentInvestmentProduct', 'reedemedInvestmentProduct', 'totalInvestmentTillDate', 'aifInvestmentWatchlist', 'freInvestmentWatchlist', 'opInvestmentWatchlist', 'aifSoldInvestmentWatchlist', 'freSoldInvestmentWatchlist', 'opSoldInvestmentWatchlist', 'user', 'aifInvestmentListed', 'freInvestmentListed', 'opInvestmentListed', 'marketPlaceAIFSellerData', 'marketPlaceFRESellerData', 'marketPlaceOPSellerData'));