diff --git a/app/Http/Controllers/Admin/AdminLoginController.php b/app/Http/Controllers/Admin/AdminLoginController.php index 496ff84..df3fb8c 100644 --- a/app/Http/Controllers/Admin/AdminLoginController.php +++ b/app/Http/Controllers/Admin/AdminLoginController.php @@ -29,7 +29,7 @@ class AdminLoginController extends Controller $userPassword = User::where('email', $email)->whereIn('role', [1,2])->value('password'); if (!$userPassword) { - return response()->json(['status' => 400, 'message' => 'Invalid Credentials!']); + return response()->json(['status' => 400, 'message' => 'Please enter registered email!']); }; if (Hash::check($password, $userPassword)) { diff --git a/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php b/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php index a974fe7..bc033f4 100644 --- a/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php +++ b/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php @@ -195,7 +195,7 @@ class FractionalRealEstateController extends Controller if ($request->hasFile('images')) { - dd($request->hasFile('images')); + // dd($request->hasFile('images')); // $edit_program_images = ProgramImage::where('programs_xid', $program_id)->delete(); foreach ($request->file('images') as $key => $file) { diff --git a/app/Http/Resources/LongOnlyEquityResource.php b/app/Http/Resources/LongOnlyEquityResource.php index 27f93c8..3a42fe2 100644 --- a/app/Http/Resources/LongOnlyEquityResource.php +++ b/app/Http/Resources/LongOnlyEquityResource.php @@ -69,7 +69,7 @@ class LongOnlyEquityResource extends JsonResource 'involved_in_short_selling' => $this->involved_in_short_selling, 'minimum_investment' => $this->minimum_investment, 'company' => $this->companies, - 'product_images' => ProductImage::where('product_xid',$this->products_id)->get(), + // 'product_images' => ProductImage::where('product_xid',$this->products_id)->get(), ]; } } diff --git a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/alternative-investment-fund.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/alternative-investment-fund.blade.php index 178e2c8..bf3011f 100644 --- a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/alternative-investment-fund.blade.php +++ b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/alternative-investment-fund.blade.php @@ -121,9 +121,9 @@
Fund domicile
- {{ $angelFund->fund_domicile }} + {{ $angelFund->fund_domicile ?? '-' }}Fund manager name
- {{ $angelFund->fund_manager_name }} + {{ $angelFund->fund_manager_name ?? '-' }}Website of the fund
- {{ $angelFund->website_of_the_fund }} + {{ $angelFund->website_of_the_fund ?? '-' }}Fund manager experience
- {{ $angelFund->fund_manager_experience }} + {{ $angelFund->fund_manager_experience ?? '-' }}Sponsor
- {{ $angelFund->sponsor }} + {{ $angelFund->sponsor ?? '-' }}Manager
- {{ $angelFund->manager }} + {{ $angelFund->manager ?? '-' }}Trustee
- {{ $angelFund->trustee }} + {{ $angelFund->trustee ?? '-' }}Auditor
- {{ $angelFund->auditor }} + {{ $angelFund->auditor ?? '-' }}Valuer / Tax Advisory
- {{ $angelFund->valuer_tax_advisor }} + {{ $angelFund->valuer_tax_advisor ?? '-' }}Credit rating (if any)
- {{ $angelFund->credit_rating }} + {{ $angelFund->credit_rating ?? '-' }}Open date
- {{ $angelFund->open_date }} + {{ $angelFund->open_date ?? '-' }}1st close date
- {{ $angelFund->first_close_date }} + {{ $angelFund->first_close_date ?? '-' }}Final close date
- {{ $angelFund->final_close_date }} + {{ $angelFund->final_close_date ?? '-' }}Tenure from final close
- {{ $angelFund->tenure_from_final_date }} + {{ $angelFund->tenure_from_final_date ?? '-' }}Commitment period
- {{ $angelFund->commitment_period }} + {{ $angelFund->commitment_period ?? '-' }}Native currency
- {{ $angelFund->native_currency }} + {{ $angelFund->native_currency ?? '-' }}Target IRR
- {{ $angelFund->target_irr }} + {{ $angelFund->target_irr ?? '-' }}Initial drawdown
- {{ $angelFund->intial_drawdown }} + {{ $angelFund->intial_drawdown ?? '-' }}Investment manager contribution
- {{ $angelFund->investment_manager_contribution }} + {{ $angelFund->investment_manager_contribution ?? '-' }}Minimal capital commitment
- {{ $angelFund->minimum_capital_commitment }} + {{ $angelFund->minimum_capital_commitment ?? '-' }}Target corpus
- {{ $angelFund->target_corpus }} + {{ $angelFund->target_corpus ?? '-' }}Accepting Overseas investment?
- {{ $angelFund->accepting_overseas_investment }} + {{ $angelFund->accepting_overseas_investment ?? '-' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $angelFund->management_fees_and_carry }} + {{ $angelFund->management_fees_and_carry ?? '-' }}Hurdle rate
- {{ $angelFund->hurdle_rate }} + {{ $angelFund->hurdle_rate ?? '-' }}Other expenses
- {{ $angelFund->other_expenses }} + {{ $angelFund->other_expenses ?? '-' }}Focused Sectors (Industries in which they are investing)
- {{ $angelFund->focused_sectors_industries }} + {{ $angelFund->focused_sectors_industries ?? '-' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $angelFund->regions_covered }} + {{ $angelFund->regions_covered ?? '-' }}Registration Number
- {{$debtFund->registration_number}} + {{$debtFund->registration_number ?? '-'}}Fund category (I/II/II)
- {{$debtFund->fund_category}} + {{$debtFund->fund_category ?? '-'}}Fund structure
- {{$debtFund->fund_structure}} + {{$debtFund->fund_structure ?? '-'}}Fund strategy
-Fund domicile
- {{$debtFund->fund_domicile}} + {{$debtFund->fund_domicile ?? '-'}}Fund manager name
- {{$debtFund->fund_manager_name}} + {{$debtFund->fund_manager_name ?? '-'}}Sponsor
- {{$debtFund->sponsor}} + {{$debtFund->sponsor ?? '-'}}Manager
- {{$debtFund->manager}} + {{$debtFund->manager ?? '-'}}Trustee
- {{$debtFund->trustee}} + {{$debtFund->trustee ?? '-'}}Auditor
- {{$debtFund->auditor}} + {{$debtFund->auditor ?? '-'}}Valuer / Tax Advisory
- {{$debtFund->valuer_tax_advisor}} + {{$debtFund->valuer_tax_advisor ?? '-'}}Website of the fund
- {{$debtFund->website_of_the_fund}} + {{$debtFund->website_of_the_fund ?? '-'}}Fund Manager Experience
- {{$debtFund->fund_manager_experience}} + {{$debtFund->fund_manager_experience ?? '-'}}Credit rating (if any)
- {{$debtFund->credit_rating}} + {{$debtFund->credit_rating ?? '-'}}Open date
- {{$debtFund->open_date}} + {{$debtFund->open_date ?? '-'}}1st close date
- {{$debtFund->first_close_date}} + {{$debtFund->first_close_date ?? '-'}}Final close date
- {{$debtFund->final_close_date}} + {{$debtFund->final_close_date ?? '-'}}Tenure from final close
- {{$debtFund->tenure_from_final_date}} + {{$debtFund->tenure_from_final_date ?? '-'}}Commitment period
- {{$debtFund->commitment_period}} + {{$debtFund->commitment_period ?? '-'}}Native currency
- {{$debtFund->native_currency}} + {{$debtFund->native_currency ?? '-'}}Target Corpus
- {{$debtFund->target_corpus}} + {{$debtFund->target_corpus ?? '-'}}Investment manager contribution
- {{$debtFund->investment_manager_contribution}} + {{$debtFund->investment_manager_contribution ?? '-'}}Minimal capital commitment
- {{$debtFund->minimum_capital_commitment}} + {{$debtFund->minimum_capital_commitment ?? '-'}}Intial Drawdown
- {{$debtFund->intial_drawdown}} + {{$debtFund->intial_drawdown ?? '-'}}Accepting Overseas investment?
- {{$debtFund->accepting_overseas_investment}} + {{$debtFund->accepting_overseas_investment ?? '-'}}Target IRR (%)
- {{$debtFund->target_irr}} + {{$debtFund->target_irr ?? '-'}}Hurdle rate
- {{$debtFund->hurdle_rate}} + {{$debtFund->hurdle_rate ?? '-'}}Other expenses
- {{$debtFund->other_expenses}} + {{$debtFund->other_expenses ?? '-'}}Focused Sectors (Industries in which they are investing)
- {{$debtFund->focused_sectors_industries}} + {{$debtFund->focused_sectors_industries ?? '-'}}Regions Covered (Geographical Locations covered by the fund)
- {{$debtFund->regions_covered ?? 'N/A'}} + {{$debtFund->regions_covered ?? '-' ?? 'N/A'}}Fund strategy
-Fund domicile
- {{ $fundForDistressedAsset->fund_domicile }} + {{ $fundForDistressedAsset->fund_domicile ?? '-' }}Fund manager name
- {{ $fundForDistressedAsset->fund_manager_name }} + {{ $fundForDistressedAsset->fund_manager_name ?? '-' }} @@ -230,7 +232,7 @@Website of the fund
- {{ $fundForDistressedAsset->website_of_the_fund }} + {{ $fundForDistressedAsset->website_of_the_fund ?? '-' }} @@ -242,7 +244,7 @@Fund manager experience
- {{ $fundForDistressedAsset->fund_manager_experience }} + {{ $fundForDistressedAsset->fund_manager_experience ?? '-' }} @@ -250,7 +252,7 @@Sponsor
- {{ $fundForDistressedAsset->sponsor }} + {{ $fundForDistressedAsset->sponsor ?? '-' }} @@ -258,7 +260,7 @@Manager
- {{ $fundForDistressedAsset->manager }} + {{ $fundForDistressedAsset->manager ?? '-' }} @@ -270,7 +272,7 @@Trustee
- {{ $fundForDistressedAsset->trustee }} + {{ $fundForDistressedAsset->trustee ?? '-' }} @@ -278,7 +280,7 @@Auditor
- {{ $fundForDistressedAsset->auditor }} + {{ $fundForDistressedAsset->auditor ?? '-' }} @@ -286,7 +288,7 @@Valuer / Tax Advisory
- {{ $fundForDistressedAsset->valuer_tax_advisor }} + {{ $fundForDistressedAsset->valuer_tax_advisor ?? '-' }} @@ -306,7 +308,7 @@Credit rating (if any)
- {{ $fundForDistressedAsset->credit_rating }} + {{ $fundForDistressedAsset->credit_rating ?? '-' }} @@ -314,7 +316,7 @@Open date
- {{ $fundForDistressedAsset->open_date }} + {{ $fundForDistressedAsset->open_date ?? '-' }} @@ -322,7 +324,7 @@1st close date
- {{ $fundForDistressedAsset->first_close_date }} + {{ $fundForDistressedAsset->first_close_date ?? '-' }} @@ -334,7 +336,7 @@Final close date
- {{ $fundForDistressedAsset->final_close_date }} + {{ $fundForDistressedAsset->final_close_date ?? '-' }} @@ -350,7 +352,7 @@Commitment period
- {{ $fundForDistressedAsset->commitment_period }} + {{ $fundForDistressedAsset->commitment_period ?? '-' }} @@ -370,7 +372,7 @@Native currency
- {{ $fundForDistressedAsset->native_currency }} + {{ $fundForDistressedAsset->native_currency ?? '-' }} @@ -378,7 +380,7 @@Target IRR
- {{ $fundForDistressedAsset->target_irr }} + {{ $fundForDistressedAsset->target_irr ?? '-' }} @@ -386,7 +388,7 @@Initial drawdown
- {{ $fundForDistressedAsset->intial_drawdown }} + {{ $fundForDistressedAsset->intial_drawdown ?? '-' }} @@ -406,7 +408,7 @@Investment manager contribution
- {{ $fundForDistressedAsset->investment_manager_contribution }} + {{ $fundForDistressedAsset->investment_manager_contribution ?? '-' }} @@ -414,7 +416,7 @@Minimal capital commitment
- {{ $fundForDistressedAsset->minimum_capital_commitment }} + {{ $fundForDistressedAsset->minimum_capital_commitment ?? '-' }} @@ -434,7 +436,7 @@Target corpus
- {{ $fundForDistressedAsset->target_corpus }} + {{ $fundForDistressedAsset->target_corpus ?? '-' }} @@ -442,7 +444,7 @@Accepting Overseas investment?
- {{ $fundForDistressedAsset->accepting_overseas_investment }} + {{ $fundForDistressedAsset->accepting_overseas_investment ?? '-' }} @@ -462,7 +464,7 @@Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $fundForDistressedAsset->management_fees_and_carry }} + {{ $fundForDistressedAsset->management_fees_and_carry ?? '-' }} @@ -482,7 +484,7 @@Hurdle rate
- {{ $fundForDistressedAsset->hurdle_rate }} + {{ $fundForDistressedAsset->hurdle_rate ?? '-' }} @@ -490,7 +492,7 @@Other expenses
- {{ $fundForDistressedAsset->other_expenses }} + {{ $fundForDistressedAsset->other_expenses ?? '-' }} @@ -510,7 +512,7 @@Focused Sectors (Industries in which they are investing)
- {{ $fundForDistressedAsset->focused_sectors_industries }} + {{ $fundForDistressedAsset->focused_sectors_industries ?? '-' }} diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/hedge-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/hedge-fund-product.blade.php index 19278b5..0d34dae 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/hedge-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/hedge-fund-product.blade.php @@ -94,7 +94,7 @@Fund domicile
- {{ $hedgeFund->fund_domicile }} + {{ $hedgeFund->fund_domicile ?? '-' }}Fund manager name
- {{ $hedgeFund->fund_manager_name }} + {{ $hedgeFund->fund_manager_name ?? '-' }}Website of the fund
- {{ $hedgeFund->website_of_the_fund }} + {{ $hedgeFund->website_of_the_fund ?? '-' }}Fund manager experience
- {{ $hedgeFund->fund_manager_experience }} + {{ $hedgeFund->fund_manager_experience ?? '-' }}Sponsor
- {{ $hedgeFund->sponsor }} + {{ $hedgeFund->sponsor ?? '-' }}Manager
- {{ $hedgeFund->manager }} + {{ $hedgeFund->manager ?? '-' }}Trustee
- {{ $hedgeFund->trustee }} + {{ $hedgeFund->trustee ?? '-' }}Auditor
- {{ $hedgeFund->auditor }} + {{ $hedgeFund->auditor ?? '-' }}Valuer / Tax Advisory
- {{ $hedgeFund->valuer_tax_advisor }} + {{ $hedgeFund->valuer_tax_advisor ?? '-' }}Credit rating (if any)
- {{ $hedgeFund->credit_rating }} + {{ $hedgeFund->credit_rating ?? '-' }}Open date
- {{ $hedgeFund->open_date }} + {{ $hedgeFund->open_date ?? '-' }}1st close date
- {{ $hedgeFund->first_close_date }} + {{ $hedgeFund->first_close_date ?? '-' }}Final close date
- {{ $hedgeFund->final_close_date }} + {{ $hedgeFund->final_close_date ?? '-' }}Tenure from final close
- {{ $hedgeFund->tenure_from_final_date }} + {{ $hedgeFund->tenure_from_final_date ?? '-' }}Commitment period
- {{ $hedgeFund->commitment_period }} + {{ $hedgeFund->commitment_period ?? '-' }}Native currency
- {{ $hedgeFund->native_currency }} + {{ $hedgeFund->native_currency ?? '-' }}Target IRR
- {{ $hedgeFund->target_irr }} + {{ $hedgeFund->target_irr ?? '-' }}Initial drawdown
- {{ $hedgeFund->intial_drawdown }} + {{ $hedgeFund->intial_drawdown ?? '-' }}Investment manager contribution
- {{ $hedgeFund->investment_manager_contribution }} + {{ $hedgeFund->investment_manager_contribution ?? '-' }}Minimal capital commitment
- {{ $hedgeFund->minimum_capital_commitment }} + {{ $hedgeFund->minimum_capital_commitment ?? '-' }}Target corpus
- {{ $hedgeFund->target_corpus }} + {{ $hedgeFund->target_corpus ?? '-' }}Accepting Overseas investment?
- {{ $hedgeFund->accepting_overseas_investment }} + {{ $hedgeFund->accepting_overseas_investment ?? '-' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $hedgeFund->management_fees_and_carry }} + {{ $hedgeFund->management_fees_and_carry ?? '-' }}Hurdle rate
- {{ $hedgeFund->hurdle_rate }} + {{ $hedgeFund->hurdle_rate ?? '-' }}Other expenses
- {{ $hedgeFund->other_expenses }} + {{ $hedgeFund->other_expenses ?? '-' }}Focused Fund
- {{ $hedgeFund->focused_funds }} + {{ $hedgeFund->focused_funds ?? '-' }}Fund domicile
- {{ $infrastructureFund->fund_domicile }} + {{ $infrastructureFund->fund_domicile ?? '-' }}Fund manager name
- {{ $infrastructureFund->fund_manager_name }} + {{ $infrastructureFund->fund_manager_name ?? '-' }}Fund manager experience
- {{ $infrastructureFund->fund_manager_experience }} + {{ $infrastructureFund->fund_manager_experience ?? '-' }}Website of the fund
- {{ $infrastructureFund->website_of_the_fund }} + {{ $infrastructureFund->website_of_the_fund ?? '-' }}Sponsor
- {{ $infrastructureFund->sponsor }} + {{ $infrastructureFund->sponsor ?? '-' }}Manager
- {{ $infrastructureFund->manager }} + {{ $infrastructureFund->manager ?? '-' }}Trustee
- {{ $infrastructureFund->trustee }} + {{ $infrastructureFund->trustee ?? '-' }}Auditor
- {{ $infrastructureFund->auditor }} + {{ $infrastructureFund->auditor ?? '-' }}Valuer / Tax Advisory
- {{ $infrastructureFund->valuer_tax_advisor }} + {{ $infrastructureFund->valuer_tax_advisor ?? '-' }}Credit rating (if any)
- {{ $infrastructureFund->credit_rating }} + {{ $infrastructureFund->credit_rating ?? '-' }}Open date
- {{ $infrastructureFund->open_date }} + {{ $infrastructureFund->open_date ?? '-' }}1st close date
- {{ $infrastructureFund->first_close_date }} + {{ $infrastructureFund->first_close_date ?? '-' }}Final close date
- {{ $infrastructureFund->final_close_date }} + {{ $infrastructureFund->final_close_date ?? '-' }}Commitment period
- {{ $infrastructureFund->commitment_period }} + {{ $infrastructureFund->commitment_period ?? '-' }}Native currency
- {{ $infrastructureFund->native_currency }} + {{ $infrastructureFund->native_currency ?? '-' }}Target IRR
- {{ $infrastructureFund->target_irr }} + {{ $infrastructureFund->target_irr ?? '-' }}Initial drawdown
- {{ $infrastructureFund->intial_drawdown }} + {{ $infrastructureFund->intial_drawdown ?? '-' }}Investment manager contribution
- {{ $infrastructureFund->investment_manager_contribution }} + {{ $infrastructureFund->investment_manager_contribution ?? '-' }}Minimal capital commitment
- {{ $infrastructureFund->minimum_capital_commitment }} + {{ $infrastructureFund->minimum_capital_commitment ?? '-' }}Target corpus
- {{ $infrastructureFund->target_corpus }} + {{ $infrastructureFund->target_corpus ?? '-' }}Accepting Overseas investment?
- {{ $infrastructureFund->accepting_overseas_investment }} + {{ $infrastructureFund->accepting_overseas_investment ?? '-' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $infrastructureFund->management_fees_and_carry }} + {{ $infrastructureFund->management_fees_and_carry ?? '-' }}Hurdle rate
- {{ $infrastructureFund->hurdle_rate }} + {{ $infrastructureFund->hurdle_rate ?? '-' }}Other expenses
- {{ $infrastructureFund->other_expenses }} + {{ $infrastructureFund->other_expenses ?? '-' }}Focused Sectors (Industries in which they are investing)
- {{ $infrastructureFund->focused_sectors_industries }} + {{ $infrastructureFund->focused_sectors_industries ?? '-' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $infrastructureFund->regions_covered }} + {{ $infrastructureFund->regions_covered ?? '-' }}Target corpus
- {{ $longOnlyEquityFund->target_corpus }} + {{ $longOnlyEquityFund->target_corpus ?? '-'}}Accepting Overseas investment?
- {{ $longOnlyEquityFund->accepting_overseas_investment }} + {{ $longOnlyEquityFund->accepting_overseas_investment ?? '-'}}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $longOnlyEquityFund->management_fees_and_carry }} + {{ $longOnlyEquityFund->management_fees_and_carry ?? '-'}}Hurdle rate
- {{ $longOnlyEquityFund->hurdle_rate }} + {{ $longOnlyEquityFund->hurdle_rate ?? '-'}}Other expenses
- {{ $longOnlyEquityFund->other_expenses }} + {{ $longOnlyEquityFund->other_expenses ?? '-'}}Focused Fund
- {{ $longOnlyEquityFund->focused_funds }} + {{ $longOnlyEquityFund->focused_funds ?? '-'}}Regions Covered (Geographical Locations covered by the fund)
- + @dd($longOnlyEquityFund)Credit rating (if any)
- {{ $privateCreditFund->credit_rating }} + {{ $privateCreditFund->credit_rating ?? '-' }}Open date
- {{ $privateCreditFund->open_date }} + {{ $privateCreditFund->open_date ?? '-' }}1st close date
- {{ $privateCreditFund->first_close_date }} + {{ $privateCreditFund->first_close_date ?? '-' }}Final close date
- {{ $privateCreditFund->final_close_date }} + {{ $privateCreditFund->final_close_date ?? '-' }}Tenure from final close
- {{ $privateCreditFund->tenure_from_final_date }} + {{ $privateCreditFund->tenure_from_final_date ?? '-' }}Commitment period
- {{ $privateCreditFund->commitment_period }} + {{ $privateCreditFund->commitment_period ?? '-' }}Native currency
- {{ $privateCreditFund->native_currency }} + {{ $privateCreditFund->native_currency ?? '-' }}Target IRR
- {{ $privateCreditFund->target_irr }} + {{ $privateCreditFund->target_irr ?? '-' }}Initial drawdown
- {{ $privateCreditFund->intial_drawdown }} + {{ $privateCreditFund->intial_drawdown ?? '-' }}Investment manager contribution
- {{ $privateCreditFund->investment_manager_contribution }} + {{ $privateCreditFund->investment_manager_contribution ?? '-' }}Minimal capital commitment
- {{ $privateCreditFund->minimum_capital_commitment }} + {{ $privateCreditFund->minimum_capital_commitment ?? '-' }}Target corpus
- {{ $privateCreditFund->target_corpus }} + {{ $privateCreditFund->target_corpus ?? '-' }}Accepting Overseas investment
- {{ $privateCreditFund->accepting_overseas_investment }} + {{ $privateCreditFund->accepting_overseas_investment ?? '-' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $privateCreditFund->management_fees_and_carry }} + {{ $privateCreditFund->management_fees_and_carry ?? '-' }}Hurdle rate
- {{ $privateCreditFund->hurdle_rate }} + {{ $privateCreditFund->hurdle_rate ?? '-' }}Other expenses
- {{ $privateCreditFund->other_expenses }} + {{ $privateCreditFund->other_expenses ?? '-' }}Focused Sectors (Industries in which they are investing)
- {{ $privateCreditFund->focused_sectors_industries }} + {{ $privateCreditFund->focused_sectors_industries ?? '-' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $privateCreditFund->regions_covered }} + {{ $privateCreditFund->regions_covered ?? '-' }}Credit rating (if any)
- {{ $privateEquityFund->credit_rating }} + {{ $privateEquityFund->credit_rating ?? '-' }}Open date
- {{ $privateEquityFund->open_date }} + {{ $privateEquityFund->open_date ?? '-' }}1st close date
- {{ $privateEquityFund->first_close_date }} + {{ $privateEquityFund->first_close_date ?? '-' }}Final close date
- {{ $privateEquityFund->final_close_date }} + {{ $privateEquityFund->final_close_date ?? '-' }}Tenure from final close
- {{ $privateEquityFund->tenure_from_final_date }} + {{ $privateEquityFund->tenure_from_final_date ?? '-' }}Commitment period
- {{ $privateEquityFund->commitment_period }} + {{ $privateEquityFund->commitment_period ?? '-' }}Native currency
- {{ $privateEquityFund->native_currency }} + {{ $privateEquityFund->native_currency ?? '-' }}Target IRR
- {{ $privateEquityFund->target_irr }} + {{ $privateEquityFund->target_irr ?? '-' }}Initial drawdown
- {{ $privateEquityFund->intial_drawdown }} + {{ $privateEquityFund->intial_drawdown ?? '-' }}Investment manager contribution
- {{ $privateEquityFund->investment_manager_contribution }} + {{ $privateEquityFund->investment_manager_contribution ?? '-' }}Minimal capital commitment
- {{ $privateEquityFund->minimum_capital_commitment }} + {{ $privateEquityFund->minimum_capital_commitment ?? '-' }}Target corpus
- {{ $privateEquityFund->target_corpus }} + {{ $privateEquityFund->target_corpus ?? '-' }}Accepting Overseas investment
- {{ $privateEquityFund->accepting_overseas_investment }} + {{ $privateEquityFund->accepting_overseas_investment ?? '-' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $privateEquityFund->management_fees_and_carry }} + {{ $privateEquityFund->management_fees_and_carry ?? '-' }}Hurdle rate
- {{ $privateEquityFund->hurdle_rate }} + {{ $privateEquityFund->hurdle_rate ?? '-' }}Other expenses
- {{ $privateEquityFund->other_expenses }} + {{ $privateEquityFund->other_expenses ?? '-' }}Focused Sectors (Industries in which they are investing)
- {{ $privateEquityFund->focused_sectors_industries }} + {{ $privateEquityFund->focused_sectors_industries ?? '-' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $privateEquityFund->regions_covered }} + {{ $privateEquityFund->regions_covered ?? '-' }}Credit rating (if any)
- {{$pipe->credit_rating}} + {{$pipe->credit_rating ?? '-'}}Open date
- {{$pipe->open_date}} + {{$pipe->open_date ?? '-'}}1st close date
- {{$pipe->first_close_date}} + {{$pipe->first_close_date ?? '-'}}Final close date
- {{$pipe->final_close_date}} + {{$pipe->final_close_date ?? '-'}}Tenure from final close
- {{$pipe->tenure_from_final_date}} + {{$pipe->tenure_from_final_date ?? '-'}}Commitment period
- {{$pipe->commitment_period}} + {{$pipe->commitment_period ?? '-'}}Native currency
- {{$pipe->native_currency}} + {{$pipe->native_currency ?? '-'}}Initial drawdown
- {{$pipe->intial_drawdown}} + {{$pipe->intial_drawdown ?? '-'}}Investment manager contribution
- {{$pipe->investment_manager_contribution}} + {{$pipe->investment_manager_contribution ?? '-'}}Minimal capital commitment
- {{$pipe->minimum_capital_commitment}} + {{$pipe->minimum_capital_commitment ?? '-'}}Target corpus
- {{$pipe->target_corpus}} + {{$pipe->target_corpus ?? '-'}}Accepting Overseas investment?
- {{$pipe->accepting_overseas_investment}} + {{$pipe->accepting_overseas_investment ?? '-'}}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{$pipe->management_fees_and_carry}} + {{$pipe->management_fees_and_carry ?? '-'}}Hurdle rate
- {{$pipe->hurdle_rate}} + {{$pipe->hurdle_rate ?? '-'}}Other expenses
- {{$pipe->other_expenses}} + {{$pipe->other_expenses ?? '-'}}Fund structure
- {{ $realEstate->fund_structure }} + {{ $realEstate->fund_structure ?? '-' }}Fund strategy
-Fund domicile
- {{ $realEstate->fund_domicile }} + {{ $realEstate->fund_domicile ?? '-' }} @@ -221,7 +223,7 @@Fund manager name
- {{ $realEstate->fund_manager_name }} + {{ $realEstate->fund_manager_name ?? '-' }} @@ -229,7 +231,7 @@Fund manager experience
- {{ $realEstate->fund_manager_experience }} + {{ $realEstate->fund_manager_experience ?? '-' }} @@ -240,7 +242,7 @@Website of the fund
- {{ $realEstate->website_of_the_fund }} + {{ $realEstate->website_of_the_fund ?? '-' }} @@ -248,7 +250,7 @@Sponsor
- {{ $realEstate->sponsor }} + {{ $realEstate->sponsor ?? '-' }} @@ -260,7 +262,7 @@Manager
- {{ $realEstate->manager }} + {{ $realEstate->manager ?? '-' }} @@ -268,7 +270,7 @@Trustee
- {{ $realEstate->trustee }} + {{ $realEstate->trustee ?? '-' }} @@ -276,7 +278,7 @@Auditor
- {{ $realEstate->auditor }} + {{ $realEstate->auditor ?? '-' }} @@ -298,7 +300,7 @@Credit rating (if any)
- {{ $realEstate->credit_rating }} + {{ $realEstate->credit_rating ?? '-' }} @@ -306,7 +308,7 @@Open date
- {{ $realEstate->open_date }} + {{ $realEstate->open_date ?? '-' }} @@ -314,7 +316,7 @@1st close date
- {{ $realEstate->first_close_date }} + {{ $realEstate->first_close_date ?? '-' }} @@ -326,7 +328,7 @@Final close date
- {{ $realEstate->final_close_date }} + {{ $realEstate->final_close_date ?? '-' }} @@ -334,7 +336,7 @@Tenure from final close
- {{ $realEstate->tenure_from_final_date }} + {{ $realEstate->tenure_from_final_date ?? '-' }} @@ -342,7 +344,7 @@Commitment period
- {{ $realEstate->commitment_period }} + {{ $realEstate->commitment_period ?? '-' }} @@ -362,7 +364,7 @@Native currency
- {{ $realEstate->native_currency }} + {{ $realEstate->native_currency ?? '-' }} @@ -370,7 +372,7 @@Target IRR
- {{ $realEstate->target_irr }} + {{ $realEstate->target_irr ?? '-' }} @@ -378,7 +380,7 @@Initial drawdown
- {{ $realEstate->intial_drawdown }} + {{ $realEstate->intial_drawdown ?? '-' }} @@ -398,7 +400,7 @@Investment manager contribution
- {{ $realEstate->investment_manager_contribution }} + {{ $realEstate->investment_manager_contribution ?? '-' }} @@ -406,14 +408,14 @@Minimal capital commitment
- {{ $realEstate->minimum_capital_commitment }} + {{ $realEstate->minimum_capital_commitment ?? '-' }}Valuer / Tax Advisory
- {{ $realEstate->valuer_tax_advisor }} + {{ $realEstate->valuer_tax_advisor ?? '-' }}Target corpus
- {{ $realEstate->target_corpus }} + {{ $realEstate->target_corpus ?? '-' }} @@ -441,7 +443,7 @@Accepting Overseas investment?
- {{ $realEstate->accepting_overseas_investment }} + {{ $realEstate->accepting_overseas_investment ?? '-' }} @@ -461,7 +463,7 @@Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $realEstate->management_fees_and_carry }} + {{ $realEstate->management_fees_and_carry ?? '-' }} @@ -481,7 +483,7 @@Hurdle rate
- {{ $realEstate->hurdle_rate }} + {{ $realEstate->hurdle_rate ?? '-' }} @@ -489,7 +491,7 @@Other expenses
- {{ $realEstate->other_expenses }} + {{ $realEstate->other_expenses ?? '-' }} @@ -529,7 +531,7 @@Regions Covered (Geographical Locations covered by the fund)
- {{ $realEstate->regions_covered }} + {{ $realEstate->regions_covered ?? '-' }} diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/venture-capital-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/venture-capital-fund-product.blade.php index d57de75..36bdc80 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/venture-capital-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/venture-capital-fund-product.blade.php @@ -108,48 +108,50 @@Credit rating (if any)
- {{ $ventureCapitalFund->credit_rating }} + {{ $ventureCapitalFund->credit_rating ?? '-' }}Open date
- {{ $ventureCapitalFund->open_date }} + {{ $ventureCapitalFund->open_date ?? '-' }}1st close date
- {{ $ventureCapitalFund->first_close_date }} + {{ $ventureCapitalFund->first_close_date ?? '-' }}Final close date
- {{ $ventureCapitalFund->final_close_date }} + {{ $ventureCapitalFund->final_close_date ?? '-' }}Tenure from final close
- {{ $ventureCapitalFund->tenure_from_final_date }} + {{ $ventureCapitalFund->tenure_from_final_date ?? '-' }}Commitment period
- {{ $ventureCapitalFund->commitment_period }} + {{ $ventureCapitalFund->commitment_period ?? '-' }}Native currency
- {{ $ventureCapitalFund->native_currency }} + {{ $ventureCapitalFund->native_currency ?? '-' }}Target IRR
- {{ $ventureCapitalFund->target_irr }} + {{ $ventureCapitalFund->target_irr ?? '-' }}Initial drawdown
- {{ $ventureCapitalFund->intial_drawdown }} + {{ $ventureCapitalFund->intial_drawdown ?? '-' }}Investment manager contribution
- {{ $ventureCapitalFund->investment_manager_contribution }} + {{ $ventureCapitalFund->investment_manager_contribution ?? '-' }}Minimal capital commitment
- {{ $ventureCapitalFund->minimum_capital_commitment }} + {{ $ventureCapitalFund->minimum_capital_commitment ?? '-' }}Target corpus
- {{ $ventureCapitalFund->target_corpus }} + {{ $ventureCapitalFund->target_corpus ?? '-' }}Accepting Overseas investment?
- {{ $ventureCapitalFund->accepting_overseas_investment }} + {{ $ventureCapitalFund->accepting_overseas_investment ?? '-' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $ventureCapitalFund->management_fees_and_carry }} + {{ $ventureCapitalFund->management_fees_and_carry ?? '-' }}Hurdle rate
- {{ $ventureCapitalFund->hurdle_rate }} + {{ $ventureCapitalFund->hurdle_rate ?? '-' }}Other expenses
- {{ $ventureCapitalFund->other_expenses }} + {{ $ventureCapitalFund->other_expenses ?? '-' }}Focused Sectors (Industries in which they are investing)
- {{ $ventureCapitalFund->focused_sectors_industries }} + {{ $ventureCapitalFund->focused_sectors_industries ?? '-' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $ventureCapitalFund->regions_covered }} + {{ $ventureCapitalFund->regions_covered ?? '-' }}Ticker
- {{$etf->ticker}} + {{$etf->ticker ?? '-'}}Exchange
- {{$etf->exchange}} + {{$etf->exchange ?? '-'}}About REIT
- {{$etf->about}} + {{$etf->about ?? '-'}}Provider
- {{$etf->provider}} + {{$etf->provider ?? '-'}}Category
- {{$etf->category}} + {{$etf->category ?? '-'}}Expense Ratio
- {{$etf->expense_ratio}} + {{$etf->expense_ratio ?? '-'}}Dividend Yield
- {{$etf->dividend_yield}} + {{$etf->dividend_yield ?? '-'}}Beta
- {{$etf->beta}} + {{$etf->beta ?? '-'}}Payouts
@@ -101,15 +101,15 @@1 Month Return
- {{$etf->month1_return}} + {{$etf->month1_return ?? '-'}}6 Month Return
- {{$etf->month6_return}} + {{$etf->month6_return ?? '-'}}1 Year Return
- {{$etf->year1_return}} + {{$etf->year1_return ?? '-'}}3 Year Return
- {{$etf->year3_return}} + {{$etf->year3_return ?? '-'}}Property grade
- {{ $fractionalRealEstate->property_grade }} + {{ $fractionalRealEstate->property_grade ?? '-' }}Asset type
- {{ $fractionalRealEstate->asset_type }} + {{ $fractionalRealEstate->asset_type ?? '-' }}Deal size
- {{ $fractionalRealEstate->deal_size_in_crore }} + {{ $fractionalRealEstate->deal_size_in_crore ?? '-' }}Property details
-Tenant
- {{ $fractionalRealEstate->tenant }} + {{ $fractionalRealEstate->tenant ?? '-' }}Minimum investment
- {{ $fractionalRealEstate->minimum_investment }} + {{ $fractionalRealEstate->minimum_investment ?? '-' }}Rental escalation
- {{ $fractionalRealEstate->rental_escalation }} + {{ $fractionalRealEstate->rental_escalation ?? '-' }}Capital appreciation
- {{ $fractionalRealEstate->capital_appreciation }} + {{ $fractionalRealEstate->capital_appreciation ?? '-' }}Coupon rate on CCD
- {{ $fractionalRealEstate->coupon_rate_on_ccd }} + {{ $fractionalRealEstate->coupon_rate_on_ccd ?? '-' }}Expected IRR
- {{ $fractionalRealEstate->expected_irr }} + {{ $fractionalRealEstate->expected_irr ?? '-' }}CAGR
- {{ $fractionalRealEstate->cagr }} + {{ $fractionalRealEstate->cagr ?? '-' }}Minimum investor Lockin
- {{ $fractionalRealEstate->minimum_investment_lockin }} + {{ $fractionalRealEstate->minimum_investment_lockin ?? '-' }}Tenant lease term
- {{ $fractionalRealEstate->tenant_lease_term }} + {{ $fractionalRealEstate->tenant_lease_term ?? '-' }}Tenant lock in
- {{ $fractionalRealEstate->tenant_lock_in }} + {{ $fractionalRealEstate->tenant_lock_in ?? '-' }}Tenant security deposit
- {{ $fractionalRealEstate->tenant_security_deposit }} + {{ $fractionalRealEstate->tenant_security_deposit ?? '-' }}Hurdle rate
- {{ $fractionalRealEstate->hurdle_rate }} + {{ $fractionalRealEstate->hurdle_rate ?? '-' }}Annual management fees
- {{ $fractionalRealEstate->annual_management_fee }} + {{ $fractionalRealEstate->annual_management_fee ?? '-' }}Performance fees
- {{ $fractionalRealEstate->performance_fees }} + {{ $fractionalRealEstate->performance_fees ?? '-' }}Issuer
- {{$hedgeFund->issuer}} + {{$hedgeFund->issuer ?? '-'}}Fund Name
- {{$hedgeFund->fund_name}} + {{$hedgeFund->fund_name ?? '-'}}Fund Type
- {{$hedgeFund->fund_type}} + {{$hedgeFund->fund_type ?? '-'}}About Issuer
- {{$hedgeFund->about_issuer}} + {{$hedgeFund->about_issuer ?? '-'}}Fund Description
- {{$hedgeFund->fund_description}} + {{$hedgeFund->fund_description ?? '-'}}Sharpe Ratio
- {{$hedgeFund->sharpe_ratio}} + {{$hedgeFund->sharpe_ratio ?? '-'}}Annualized Volatility
- {{$hedgeFund->annualized_volatility}} + {{$hedgeFund->annualized_volatility ?? '-'}}Max Dropdown
- {{$hedgeFund->max_dropdown}} + {{$hedgeFund->max_dropdown ?? '-'}}ISIN
- {{$hedgeFund->isin}} + {{$hedgeFund->isin ?? '-'}}Inception Date
- {{$hedgeFund->inception_date}} + {{$hedgeFund->inception_date ?? '-'}}Fund AUM
- {{$hedgeFund->fund_aum}} + {{$hedgeFund->fund_aum ?? '-'}}Expense Ratio
- {{$hedgeFund->expense_ratio}} + {{$hedgeFund->expense_ratio ?? '-'}}NAV Per Unit
- {{$hedgeFund->nav_per_unit}} + {{$hedgeFund->nav_per_unit ?? '-'}}Minimum Investment
- {{$hedgeFund->minimum_investment}} + {{$hedgeFund->minimum_investment ?? '-'}}YTD
- {{$hedgeFund->ytd}} + {{$hedgeFund->ytd ?? '-'}}1 Year Return
- {{$hedgeFund->year1_return}} + {{$hedgeFund->year1_return ?? '-'}}3 Year Return
- {{$hedgeFund->year3_return}} + {{$hedgeFund->year3_return ?? '-'}}Property Location
- {{$realEstate->property_location}} + {{$realEstate->property_location ?? '-'}}Project Type
- {{$realEstate->project_type}} + {{$realEstate->project_type ?? '-'}}Current Status
- {{$realEstate->current_status}} + {{$realEstate->current_status ?? '-'}}Price Per Sq Ft
- {{$realEstate->price_per_sq_ft}} + {{$realEstate->price_per_sq_ft ?? '-'}}Booking Amount
- {{$realEstate->booking_amount}} + {{$realEstate->booking_amount ?? '-'}}Price Range
- {{$realEstate->price_range}} + {{$realEstate->price_range ?? '-'}}Total Price
- {{$realEstate->total_price}} + {{$realEstate->total_price ?? '-'}}Transaction Type
- {{$realEstate->transaction_type}} + {{$realEstate->transaction_type ?? '-'}}Project Code/Rera Id
- {{$realEstate->project_code_or_rera_id}} + {{$realEstate->project_code_or_rera_id ?? '-'}}Area in sq ft
- {{$realEstate->area_in_sq_ft}} + {{$realEstate->area_in_sq_ft ?? '-'}}Construction Status
- {{$realEstate->construction_status}} + {{$realEstate->construction_status ?? '-'}}Launch Date
- launch_date}}> + launch_date ?? '-'}}>No. Of Bedrooms
- {{$realEstate->no_of_bedrooms}} + {{$realEstate->no_of_bedrooms ?? '-'}}No. Of Restrooms
- {{$realEstate->no_of_restrooms}} + {{$realEstate->no_of_restrooms ?? '-'}}No. Of Floors
- {{$realEstate->no_of_floors}} + {{$realEstate->no_of_floors ?? '-'}}Total Towers
- {{$realEstate->total_towers}} + {{$realEstate->total_towers ?? '-'}}Builder Details
- {{$realEstate->builder_details}} + {{$realEstate->builder_details ?? '-'}}Landmarks
- {{$realEstate->landmarks}} + {{$realEstate->landmarks ?? '-'}}Electricity Status
- {{$realEstate->electricity_status}} + {{$realEstate->electricity_status ?? '-'}}Fire Satefy Measures
- {{$realEstate->fire_safety_measures}} + {{$realEstate->fire_safety_measures ?? '-'}}Water Facility
- {{$realEstate->water_facility}} + {{$realEstate->water_facility ?? '-'}}Price Neogtiable
- {{$realEstate->price_negotiable}} + {{$realEstate->price_negotiable ?? '-'}}Maintenance Fees
- {{$realEstate->maintenance_fees}} + {{$realEstate->maintenance_fees ?? '-'}}Nearest Railway Metro Station
- {{$realEstate->nearest_railway_metro_station}} + {{$realEstate->nearest_railway_metro_station ?? '-'}}Pre-Leased
- {{$realEstate->pre_leased}} + {{$realEstate->pre_leased ?? '-'}}Tenant Details
- {{$realEstate->tenant_details}} + {{$realEstate->tenant_details ?? '-'}}Facilities/Features
- {{$realEstate->facilities_features}} + {{$realEstate->facilities_features ?? '-'}}Construction Age
- {{$realEstate->construction_age}} + {{$realEstate->construction_age ?? '-'}}Location
- {{$realEstate->location}} + {{$realEstate->location ?? '-'}}Country
- {{$realEstate->country}} + {{$realEstate->country ?? '-'}}Remarks
- -Issuer
- {{$mutualFund->issuer}} + {{$mutualFund->issuer ?? '-'}}Fund Name
- {{$mutualFund->fund_name}} + {{$mutualFund->fund_name ?? '-'}}Fund Type
- {{$mutualFund->fund_type}} + {{$mutualFund->fund_type ?? '-'}}About Issuer
- {{$mutualFund->about_issuer}} + {{$mutualFund->about_issuer ?? '-'}}Fund Description
- {{$mutualFund->fund_description}} + {{$mutualFund->fund_description ?? '-'}}Sharpe Ratio
- {{$mutualFund->sharpe_ratio}} + {{$mutualFund->sharpe_ratio ?? '-'}}Annualized Volatility
- {{$mutualFund->annualized_volatility}} + {{$mutualFund->annualized_volatility ?? '-'}}Max Dropdown
- {{$mutualFund->max_dropdown}} + {{$mutualFund->max_dropdown ?? '-'}}ISIN
- {{$mutualFund->isin}} + {{$mutualFund->isin ?? '-'}}Inception Date
- {{$mutualFund->inception_date}} + {{$mutualFund->inception_date ?? '-'}}Fund AUM
- {{$mutualFund->fund_aum}} + {{$mutualFund->fund_aum ?? '-'}}Expense Ratio
- {{$mutualFund->expense_ratio}} + {{$mutualFund->expense_ratio ?? '-'}}NAV Per Unit
- {{$mutualFund->nav_per_unit}} + {{$mutualFund->nav_per_unit ?? '-'}}Minimum Investment
- {{$mutualFund->minimum_investment}} + {{$mutualFund->minimum_investment ?? '-'}}YTD
- {{$mutualFund->ytd}} + {{$mutualFund->ytd ?? '-'}}1 Year Return
- {{$mutualFund->year1_return}} + {{$mutualFund->year1_return ?? '-'}}3 Year Return
- {{$mutualFund->year3_return}} + {{$mutualFund->year3_return ?? '-'}}Issuer
- {{$privateEquityFund->issuer}} + {{$privateEquityFund->issuer ?? '-'}}Fund Name
- {{$privateEquityFund->fund_name}} + {{$privateEquityFund->fund_name ?? '-'}}Fund Type
- {{$privateEquityFund->fund_type}} + {{$privateEquityFund->fund_type ?? '-'}}About Issuer
- {{$privateEquityFund->about_issuer}} + {{$privateEquityFund->about_issuer ?? '-'}}Fund Description
- {{$privateEquityFund->fund_description}} + {{$privateEquityFund->fund_description ?? '-'}}Sharpe Ratio
- {{$privateEquityFund->sharpe_ratio}} + {{$privateEquityFund->sharpe_ratio ?? '-'}}Annualized Volatility
- {{$privateEquityFund->annualized_volatility}} + {{$privateEquityFund->annualized_volatility ?? '-'}}Max Dropdown
- {{$privateEquityFund->max_dropdown}} + {{$privateEquityFund->max_dropdown ?? '-'}}ISIN
- {{$privateEquityFund->isin}} + {{$privateEquityFund->isin ?? '-'}}Inception Date
- {{$privateEquityFund->inception_date}} + {{$privateEquityFund->inception_date ?? '-'}}Fund AUM
- {{$privateEquityFund->fund_aum}} + {{$privateEquityFund->fund_aum ?? '-'}}Expense Ratio
- {{$privateEquityFund->expense_ratio}} + {{$privateEquityFund->expense_ratio ?? '-'}}NAV Per Unit
- {{$privateEquityFund->nav_per_unit}} + {{$privateEquityFund->nav_per_unit ?? '-'}}Minimum Investment
- {{$privateEquityFund->minimum_investment}} + {{$privateEquityFund->minimum_investment ?? '-'}}YTD
- {{$privateEquityFund->ytd}} + {{$privateEquityFund->ytd ?? '-'}}1 Year Return
- {{$privateEquityFund->year1_return}} + {{$privateEquityFund->year1_return ?? '-'}}3 Year Return
- {{$privateEquityFund->year3_return}} + {{$privateEquityFund->year3_return ?? '-'}}Ticker
- {{$reit->ticker}} + {{$reit->ticker ?? '-'}}Exchange
- {{$reit->exchange}} + {{$reit->exchange ?? '-'}}About REIT
- {{$reit->about}} + {{$reit->about ?? '-'}}Provider
- {{$reit->provider}} + {{$reit->provider ?? '-'}}Category
- {{$reit->category}} + {{$reit->category ?? '-'}}Expense Ratio
- {{$reit->expense_ratio}} + {{$reit->expense_ratio ?? '-'}}Dividend Yield
- {{$reit->dividend_yield}} + {{$reit->dividend_yield ?? '-'}}Beta
- {{$reit->beta}} + {{$reit->beta ?? '-'}}Payouts
@@ -100,15 +100,15 @@1 Month Return
- {{$reit->month1_return}} + {{$reit->month1_return ?? '-'}}6 Month Return
- {{$reit->month6_return}} + {{$reit->month6_return ?? '-'}}1 Year Return
- {{$reit->year1_return}} + {{$reit->year1_return ?? '-'}}3 Year Return
- {{$reit->year3_return}} + {{$reit->year3_return ?? '-'}}Issuer
- {{$ventureCapitalFund->issuer}} + {{$ventureCapitalFund->issuer ?? '-'}}Fund Name
- {{$ventureCapitalFund->fund_name}} + {{$ventureCapitalFund->fund_name ?? '-'}}Fund Type
- {{$ventureCapitalFund->fund_type}} + {{$ventureCapitalFund->fund_type ?? '-'}}About Issuer
- {{$ventureCapitalFund->about_issuer}} + {{$ventureCapitalFund->about_issuer ?? '-'}}Fund Description
- {{$ventureCapitalFund->fund_description}} + {{$ventureCapitalFund->fund_description ?? '-'}}Sharpe Ratio
- {{$ventureCapitalFund->sharpe_ratio}} + {{$ventureCapitalFund->sharpe_ratio ?? '-'}}Annualized Volatility
- {{$ventureCapitalFund->annualized_volatility}} + {{$ventureCapitalFund->annualized_volatility ?? '-'}}Max Dropdown
- {{$ventureCapitalFund->max_dropdown}} + {{$ventureCapitalFund->max_dropdown ?? '-'}}ISIN
- {{$ventureCapitalFund->isin}} + {{$ventureCapitalFund->isin ?? '-'}}Inception Date
- {{$ventureCapitalFund->inception_date}} + {{$ventureCapitalFund->inception_date ?? '-'}}Fund AUM
- {{$ventureCapitalFund->fund_aum}} + {{$ventureCapitalFund->fund_aum ?? '-'}}Expense Ratio
- {{$ventureCapitalFund->expense_ratio}} + {{$ventureCapitalFund->expense_ratio ?? '-'}}NAV Per Unit
- {{$ventureCapitalFund->nav_per_unit}} + {{$ventureCapitalFund->nav_per_unit ?? '-'}}Minimum Investment
- {{$ventureCapitalFund->minimum_investment}} + {{$ventureCapitalFund->minimum_investment ?? '-'}}YTD
- {{$ventureCapitalFund->ytd}} + {{$ventureCapitalFund->ytd ?? '-'}}1 Year Return
- {{$ventureCapitalFund->year1_return}} + {{$ventureCapitalFund->year1_return ?? '-'}}3 Year Return
- {{$ventureCapitalFund->year3_return}} + {{$ventureCapitalFund->year3_return ?? '-'}}