From ec79759060c9292031779ca6af0be782b2a5ac92 Mon Sep 17 00:00:00 2001 From: Shailesh-1981 <86923815+Shailesh-1981@users.noreply.github.com> Date: Tue, 11 Jun 2024 19:01:52 +0530 Subject: [PATCH] bugs fixing --- app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php b/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php index 32bf51b..c4dc132 100644 --- a/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php +++ b/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php @@ -14,9 +14,9 @@ class GlobalVentureCapitalFund extends Controller public function index() { $ventureCapital = $this->ventureCapitalAllData()->getData(); - $openGVCF = Product::has('funds')->with('funds','companies','categorys')->funds()->globalVentureCapitalFund()->open()->active()->latest()->get(); - $resaleGVCF = Product::has('funds')->with('funds','companies','categorys')->funds()->globalVentureCapitalFund()->resale()->active()->latest()->get(); - $fullyFundedGVCF = Product::has('funds')->with('funds','companies','categorys')->funds()->globalVentureCapitalFund()->fullyFunded()->active()->latest()->get(); + $openGVCF = Product::has('funds')->with('funds.companies','categorys')->funds()->globalVentureCapitalFund()->open()->active()->latest()->get(); + $resaleGVCF = Product::has('funds')->with('funds.companies','categorys')->funds()->globalVentureCapitalFund()->resale()->active()->latest()->get(); + $fullyFundedGVCF = Product::has('funds')->with('funds.companies','categorys')->funds()->globalVentureCapitalFund()->fullyFunded()->active()->latest()->get(); $learnMore = (new FractionalRealEstateFrontendController)->globalVentureCapitalFundQuestionAndAnswer()->getData(); // $faqs = (new FractionalRealEstateFrontendController)->globalVentureCapitalFundQuestionAndAnswerFaqs()->getData(); // dd($openGVCF);