fix changes

This commit is contained in:
Ritikesh yadav
2024-04-26 18:40:07 +05:30
parent c6101d6de8
commit e98dbee59a
16 changed files with 2904 additions and 3118 deletions

View File

@@ -62,7 +62,9 @@ class DashboardController extends Controller
// $row['marketplace_aif_sellers_data'] = MarketplaceAlternativeInvestmentFundSeller::where('id', $row->associated_id)->first();
// }
// return $market_place_data;
$sellerData = MarketplaceSellerForm::has('aif')->with('aif')->where('users_id',$id)->get();
// $sellerData = MarketplaceSellerForm::has('aif')->with('aif')->where('users_id',$id)->get();
$sellerData = MarketplaceSellerForm::with('aif')->where('users_id',$id)->get();
// dd($sellerData);
// return $sellerData[0]->aif['name_of_the_aif_fund'];
if(count($sellerData->toArray()))
{
@@ -117,7 +119,7 @@ class DashboardController extends Controller
// $row['marketplace_fre_sellers_data'] = MarketplaceFractionalRealEstateSeller::where('id', $row->associated_id)->first();
// }
// return $market_place_data;
$sellerData = MarketplaceSellerForm::has('fre')->with('fre')->where('users_id',$id)->get();
$sellerData = MarketplaceSellerForm::with('fre')->where('users_id',$id)->get();
// dd(count($sellerData->toArray()));
if(count($sellerData->toArray()))
{