bugs fixing
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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 |
@@ -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>
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user