Merge pull request #275 from Ritikeshyadav/shaileshfreeu

Shaileshfreeu
This commit is contained in:
Ritikeshyadav
2024-06-11 19:01:23 +05:30
committed by GitHub
4 changed files with 11 additions and 4 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);

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

@@ -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>