Merge branch 'main' of https://github.com/Ritikeshyadav/my-freeu into RitikeshFreeu
This commit is contained in:
@@ -166,6 +166,7 @@ class AlternativeInvestmentFundController extends Controller
|
||||
$productData = AlternativeInvestmentFund::where('slug',$slug)->first();
|
||||
// dd($productData,$slug,$ventureCapitalFund);
|
||||
$productData = Product::with('product_images')->where('id', '=', $productData->products_id)->first();
|
||||
// dd($ventureCapitalFund, $otherVCP, $productData);
|
||||
return view('Frontend.Pages.alternative-investment-fund.venture-capital-fund-product', compact('ventureCapitalFund', 'otherVCP', 'productData'));
|
||||
}
|
||||
|
||||
@@ -194,7 +195,7 @@ class AlternativeInvestmentFundController extends Controller
|
||||
->get();
|
||||
$productData = AlternativeInvestmentFund::where('slug', '=', $slug)->first();
|
||||
$product = Product::with('product_images')->where('id', '=', $productData->products_id)->first();
|
||||
// dd($otherAF);
|
||||
// dd($product);
|
||||
return view('Frontend.Pages.alternative-investment-fund.angel-fund-product', compact('angelFund', 'otherAF', 'productData','product'));
|
||||
}
|
||||
|
||||
|
||||
@@ -524,7 +524,7 @@ class ProfileController extends Controller
|
||||
<strong>" . $data->created_at->diffForHumans() . "</strong>
|
||||
</p>
|
||||
</a>
|
||||
</li>";
|
||||
</li>";
|
||||
}
|
||||
if ($notificationHTML) {
|
||||
return response()->json(['status' => 200, 'data' => $notificationHTML, 'count'=>Auth::guard('users')->user()->unreadNotifications->count()]);
|
||||
|
||||
Reference in New Issue
Block a user