bugs fixes

This commit is contained in:
meghamalore
2024-06-17 19:16:27 +05:30
parent 63211e440d
commit 65ef9f586d
10 changed files with 19 additions and 18 deletions

View File

@@ -55,7 +55,7 @@ class VentureCapitalFundController extends Controller
]);
$category_type = $request->category_id;
$category = Category::find($request->category_id);
// dd('hello');
// dd($category);
Excel::import(new AlternativeInvestmentFundImport($category_type), $request->file('productFile'));
// return back()->with('success', "$category->category_name Imported Successfully.");
return redirect()->route('manage.products')->with('success', "$category->category_name Imported Successfully.");

View File

@@ -204,6 +204,7 @@ class AlternativeInvestmentFundController extends Controller
public function privateEquityFundProduct($slug)
{
$privateEquityFund = $this->privateEquityData($slug)->getData()->data;
// dd($privateEquityFund);
$otherPEF = AlternativeInvestmentFund::query()
->join('products', 'alternative_investment_funds.products_id', 'products.id')
->join('companies', 'alternative_investment_funds.companies_id', 'companies.id')