bugs fixing

This commit is contained in:
Shailesh-1981
2024-06-11 18:57:55 +05:30
parent 6555097053
commit beac9dff4c
6 changed files with 13 additions and 6 deletions

View File

@@ -14,9 +14,9 @@ class GlobalVentureCapitalFund extends Controller
public function index()
{
$ventureCapital = $this->ventureCapitalAllData()->getData();
$openGVCF = Product::has('funds')->with('funds','categorys')->funds()->globalVentureCapitalFund()->open()->active()->latest()->get();
$resaleGVCF = Product::has('funds')->with('funds','categorys')->funds()->globalVentureCapitalFund()->resale()->active()->latest()->get();
$fullyFundedGVCF = Product::has('funds')->with('funds','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);

View File

@@ -76,7 +76,7 @@ class Category extends Model
const AngelFundId = 30;
const GlobalPrivateEquityFundId = 31;
const GlobalPrivateEquityFundId = 39;
const DebtFundId = 32;

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -206,6 +206,11 @@
<label> <b class='fw-bold'>Hurdle Rate</b>: {{$alternativeInvestmentFund->alternativeInvestmentFund->hurdle_rate ?? 'N/A'}}</label>
</div>
</div>
<div class="col-md-6 my-3 {{dNone($alternativeInvestmentFund->description)}}">
<div class="veiw_detials_area">
<label> <b class='fw-bold'>Description</b>: {{$alternativeInvestmentFund->description ?? 'N/A'}}</label>
</div>
</div>
<div class="col-md-6 my-3 {{dNone($alternativeInvestmentFund->alternativeInvestmentFund->other_expenses)}}">
<div class="veiw_detials_area">
<label> <b class='fw-bold'>Other Expenses</b>: {{$alternativeInvestmentFund->alternativeInvestmentFund->other_expenses ?? 'N/A'}}</label>

View File

@@ -8,7 +8,7 @@
<a href="{{ auth()->guard('users')->check() == true ? route('private-equity-funds.product',$gireData->funds->slug) : route('login') }}" data-route="{{route('private-equity-funds.product',$gireData->funds->slug)}}" class="redirect_to_page">
<div class="card-logo bg-white">
{{-- <img src="{{imagePath('public/assets/media/FrontendImages/menu-logo.png')}}"> --}}
<img src="{{ $data->funds->companies != null ? $data->funds->companies->company_logo : imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
<img src="{{ $gireData->funds->companies != null ? $gireData->funds->companies->company_logo : imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
</div>
<div class="blur-md">

View File

@@ -17,7 +17,9 @@
<div class="card-logo bg-white">
<img src="{{ imagePath('public/assets/media/FrontendImages/menu-logo.png') }}">
{{-- <img src="{{ imagePath('public/assets/media/FrontendImages/menu-logo.png') }}"> --}}
<img src="{{ $gireData->funds->companies != null ? $gireData->funds->companies->company_logo : imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
</div>