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 @@
diff --git a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/exchange.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/exchange.blade.php index 53ce074..81039fe 100644 --- a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/exchange.blade.php +++ b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/exchange.blade.php @@ -75,9 +75,9 @@
diff --git a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/fractional-real-estate.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/fractional-real-estate.blade.php index c0fecd4..05a0844 100644 --- a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/fractional-real-estate.blade.php +++ b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/fractional-real-estate.blade.php @@ -79,9 +79,9 @@
diff --git a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/funds.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/funds.blade.php index eedbad3..aa5b400 100644 --- a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/funds.blade.php +++ b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/funds.blade.php @@ -122,9 +122,9 @@
diff --git a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/real-estate.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/real-estate.blade.php index 2a7311d..2de5ced 100644 --- a/resources/views/Admin/Pages/manage_freeu_investment/edit-product/real-estate.blade.php +++ b/resources/views/Admin/Pages/manage_freeu_investment/edit-product/real-estate.blade.php @@ -121,9 +121,9 @@
diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/angel-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/angel-fund-product.blade.php index 0e302ba..6d4fc9b 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/angel-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/angel-fund-product.blade.php @@ -94,28 +94,30 @@
- @@ -145,43 +147,43 @@

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 ?? '-' }}
@@ -191,29 +193,29 @@

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 ?? '-' }}
@@ -223,15 +225,15 @@

Native currency

- {{ $angelFund->native_currency }} + {{ $angelFund->native_currency ?? '-' }}

Target IRR

- {{ $angelFund->target_irr }} + {{ $angelFund->target_irr ?? '-' }}

Initial drawdown

- {{ $angelFund->intial_drawdown }} + {{ $angelFund->intial_drawdown ?? '-' }}
@@ -241,11 +243,11 @@

Investment manager contribution

- {{ $angelFund->investment_manager_contribution }} + {{ $angelFund->investment_manager_contribution ?? '-' }}

Minimal capital commitment

- {{ $angelFund->minimum_capital_commitment }} + {{ $angelFund->minimum_capital_commitment ?? '-' }}
@@ -255,11 +257,11 @@

Target corpus

- {{ $angelFund->target_corpus }} + {{ $angelFund->target_corpus ?? '-' }}

Accepting Overseas investment?

- {{ $angelFund->accepting_overseas_investment }} + {{ $angelFund->accepting_overseas_investment ?? '-' }}
@@ -269,7 +271,7 @@

Management Fees and Carry - Set Up fee - Management Fee - Performace fee

- {{ $angelFund->management_fees_and_carry }} + {{ $angelFund->management_fees_and_carry ?? '-' }}
@@ -279,11 +281,11 @@

Hurdle rate

- {{ $angelFund->hurdle_rate }} + {{ $angelFund->hurdle_rate ?? '-' }}

Other expenses

- {{ $angelFund->other_expenses }} + {{ $angelFund->other_expenses ?? '-' }}
@@ -293,7 +295,7 @@

Focused Sectors (Industries in which they are investing)

- {{ $angelFund->focused_sectors_industries }} + {{ $angelFund->focused_sectors_industries ?? '-' }}
@@ -303,7 +305,7 @@

Regions Covered (Geographical Locations covered by the fund)

- {{ $angelFund->regions_covered }} + {{ $angelFund->regions_covered ?? '-' }}
diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/debt-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/debt-fund-product.blade.php index 2a606c9..bfdd1c2 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/debt-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/debt-fund-product.blade.php @@ -66,30 +66,32 @@
- --}}
@@ -125,55 +127,55 @@

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

-

{{$debtFund->fund_strategy}}

+

{{$debtFund->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 ?? '-'}}
@@ -181,7 +183,7 @@

Website of the fund

- {{$debtFund->website_of_the_fund}} + {{$debtFund->website_of_the_fund ?? '-'}}
@@ -189,7 +191,7 @@

Fund Manager Experience

- {{$debtFund->fund_manager_experience}} + {{$debtFund->fund_manager_experience ?? '-'}}
@@ -197,29 +199,29 @@

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 ?? '-'}}
@@ -227,11 +229,11 @@

Native currency

- {{$debtFund->native_currency}} + {{$debtFund->native_currency ?? '-'}}

Target Corpus

- {{$debtFund->target_corpus}} + {{$debtFund->target_corpus ?? '-'}}
@@ -239,11 +241,11 @@

Investment manager contribution

- {{$debtFund->investment_manager_contribution}} + {{$debtFund->investment_manager_contribution ?? '-'}}

Minimal capital commitment

- {{$debtFund->minimum_capital_commitment}} + {{$debtFund->minimum_capital_commitment ?? '-'}}
@@ -251,11 +253,11 @@

Intial Drawdown

- {{$debtFund->intial_drawdown}} + {{$debtFund->intial_drawdown ?? '-'}}

Accepting Overseas investment?

- {{$debtFund->accepting_overseas_investment}} + {{$debtFund->accepting_overseas_investment ?? '-'}}
@@ -263,7 +265,7 @@

Target IRR (%)

- {{$debtFund->target_irr}} + {{$debtFund->target_irr ?? '-'}}
@@ -277,7 +279,7 @@
  • - Performance Fee
  • - {{$debtFund->management_fees_and_carry}} + {{$debtFund->management_fees_and_carry ?? '-'}} @@ -285,11 +287,11 @@

    Hurdle rate

    - {{$debtFund->hurdle_rate}} + {{$debtFund->hurdle_rate ?? '-'}}

    Other expenses

    - {{$debtFund->other_expenses}} + {{$debtFund->other_expenses ?? '-'}}
    @@ -297,7 +299,7 @@

    Focused Sectors (Industries in which they are investing)

    - {{$debtFund->focused_sectors_industries}} + {{$debtFund->focused_sectors_industries ?? '-'}}
    @@ -305,7 +307,7 @@

    Regions Covered (Geographical Locations covered by the fund)

    - {{$debtFund->regions_covered ?? 'N/A'}} + {{$debtFund->regions_covered ?? '-' ?? 'N/A'}}
    diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/fund-for-distressed-asset-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/fund-for-distressed-asset-product.blade.php index 6a32495..b3bfc73 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/fund-for-distressed-asset-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/fund-for-distressed-asset-product.blade.php @@ -136,28 +136,30 @@
    - @@ -196,7 +198,7 @@

    Fund strategy

    -

    {{ $fundForDistressedAsset->fund_strategy }}

    +

    {{ $fundForDistressedAsset->fund_strategy ?? '-' }}

    @@ -214,7 +216,7 @@

    Fund domicile

    - {{ $fundForDistressedAsset->fund_domicile }} + {{ $fundForDistressedAsset->fund_domicile ?? '-' }}
    @@ -222,7 +224,7 @@

    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 @@
    - + @if ($productData && $productData->product_images != null) @@ -146,43 +147,43 @@

    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 ?? '-' }}
    @@ -192,29 +193,29 @@

    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 ?? '-' }}
    @@ -224,15 +225,15 @@

    Native currency

    - {{ $hedgeFund->native_currency }} + {{ $hedgeFund->native_currency ?? '-' }}

    Target IRR

    - {{ $hedgeFund->target_irr }} + {{ $hedgeFund->target_irr ?? '-' }}

    Initial drawdown

    - {{ $hedgeFund->intial_drawdown }} + {{ $hedgeFund->intial_drawdown ?? '-' }}
    @@ -242,11 +243,11 @@

    Investment manager contribution

    - {{ $hedgeFund->investment_manager_contribution }} + {{ $hedgeFund->investment_manager_contribution ?? '-' }}

    Minimal capital commitment

    - {{ $hedgeFund->minimum_capital_commitment }} + {{ $hedgeFund->minimum_capital_commitment ?? '-' }}
    @@ -256,11 +257,11 @@

    Target corpus

    - {{ $hedgeFund->target_corpus }} + {{ $hedgeFund->target_corpus ?? '-' }}

    Accepting Overseas investment?

    - {{ $hedgeFund->accepting_overseas_investment }} + {{ $hedgeFund->accepting_overseas_investment ?? '-' }}
    @@ -270,7 +271,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{ $hedgeFund->management_fees_and_carry }} + {{ $hedgeFund->management_fees_and_carry ?? '-' }}
    @@ -280,11 +281,11 @@

    Hurdle rate

    - {{ $hedgeFund->hurdle_rate }} + {{ $hedgeFund->hurdle_rate ?? '-' }}

    Other expenses

    - {{ $hedgeFund->other_expenses }} + {{ $hedgeFund->other_expenses ?? '-' }}
    @@ -294,12 +295,12 @@

    Focused Fund

    - {{ $hedgeFund->focused_funds }} + {{ $hedgeFund->focused_funds ?? '-' }}
    -
    + {{--
    @@ -308,7 +309,7 @@
    -
    +
    --}} @include('Frontend.Pages.alternative-investment-fund.presentation-factsheet') diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/infrastructure-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/infrastructure-fund-product.blade.php index 5884d96..d2eafe0 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/infrastructure-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/infrastructure-fund-product.blade.php @@ -94,28 +94,30 @@
    -
    @@ -145,40 +147,40 @@

    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 ?? '-' }}
    @@ -188,25 +190,25 @@

    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 ?? '-' }}
    @@ -214,7 +216,7 @@

    Commitment period

    - {{ $infrastructureFund->commitment_period }} + {{ $infrastructureFund->commitment_period ?? '-' }}
    @@ -224,15 +226,15 @@

    Native currency

    - {{ $infrastructureFund->native_currency }} + {{ $infrastructureFund->native_currency ?? '-' }}

    Target IRR

    - {{ $infrastructureFund->target_irr }} + {{ $infrastructureFund->target_irr ?? '-' }}

    Initial drawdown

    - {{ $infrastructureFund->intial_drawdown }} + {{ $infrastructureFund->intial_drawdown ?? '-' }}
    @@ -242,11 +244,11 @@

    Investment manager contribution

    - {{ $infrastructureFund->investment_manager_contribution }} + {{ $infrastructureFund->investment_manager_contribution ?? '-' }}

    Minimal capital commitment

    - {{ $infrastructureFund->minimum_capital_commitment }} + {{ $infrastructureFund->minimum_capital_commitment ?? '-' }}
    @@ -256,11 +258,11 @@

    Target corpus

    - {{ $infrastructureFund->target_corpus }} + {{ $infrastructureFund->target_corpus ?? '-' }}

    Accepting Overseas investment?

    - {{ $infrastructureFund->accepting_overseas_investment }} + {{ $infrastructureFund->accepting_overseas_investment ?? '-' }}
    @@ -270,7 +272,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{ $infrastructureFund->management_fees_and_carry }} + {{ $infrastructureFund->management_fees_and_carry ?? '-' }}
    @@ -280,11 +282,11 @@

    Hurdle rate

    - {{ $infrastructureFund->hurdle_rate }} + {{ $infrastructureFund->hurdle_rate ?? '-' }}

    Other expenses

    - {{ $infrastructureFund->other_expenses }} + {{ $infrastructureFund->other_expenses ?? '-' }}
    @@ -294,7 +296,7 @@

    Focused Sectors (Industries in which they are investing)

    - {{ $infrastructureFund->focused_sectors_industries }} + {{ $infrastructureFund->focused_sectors_industries ?? '-' }}
    @@ -304,7 +306,7 @@

    Regions Covered (Geographical Locations covered by the fund)

    - {{ $infrastructureFund->regions_covered }} + {{ $infrastructureFund->regions_covered ?? '-' }}
    diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/long-only-equity-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/long-only-equity-fund-product.blade.php index 2ab55ff..2dfb9d5 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/long-only-equity-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/long-only-equity-fund-product.blade.php @@ -49,7 +49,7 @@
    -

    {{ $longOnlyEquityFund->fund_name }}

    +

    {{ $longOnlyEquityFund->fund_name ?? '-'}}

    Invest
    @@ -88,29 +88,30 @@
    - - @@ -154,43 +155,43 @@

    Fund domicile

    - {{ $longOnlyEquityFund->fund_domicile }} + {{ $longOnlyEquityFund->fund_domicile ?? '-'}}

    Fund manager name

    - {{ $longOnlyEquityFund->fund_manager_name }} + {{ $longOnlyEquityFund->fund_manager_name ?? '-'}}

    Website of the fund

    - {{ $longOnlyEquityFund->website_of_the_fund }} + {{ $longOnlyEquityFund->website_of_the_fund ?? '-'}}

    Fund manager experience

    - {{ $longOnlyEquityFund->fund_manager_experience }} + {{ $longOnlyEquityFund->fund_manager_experience ?? '-'}}

    Sponsor

    - {{ $longOnlyEquityFund->sponsor }} + {{ $longOnlyEquityFund->sponsor ?? '-'}}

    Manager

    - {{ $longOnlyEquityFund->manager }} + {{ $longOnlyEquityFund->manager ?? '-'}}

    Trustee

    - {{ $longOnlyEquityFund->trustee }} + {{ $longOnlyEquityFund->trustee ?? '-'}}

    Auditor

    - {{ $longOnlyEquityFund->auditor }} + {{ $longOnlyEquityFund->auditor ?? '-'}}

    Valuer / Tax Advisory

    - {{ $longOnlyEquityFund->valuer_tax_advisor }} + {{ $longOnlyEquityFund->valuer_tax_advisor ?? '-' }}
    @@ -200,29 +201,29 @@

    Credit rating (if any)

    - {{ $longOnlyEquityFund->credit_rating }} + {{ $longOnlyEquityFund->credit_rating ?? '-' }}

    Open date

    - {{ $longOnlyEquityFund->open_date }} + {{ $longOnlyEquityFund->open_date ?? '-'}}

    1st close date

    - {{ $longOnlyEquityFund->first_close_date }} + {{ $longOnlyEquityFund->first_close_date ?? '-'}}

    Final close date

    - {{ $longOnlyEquityFund->final_close_date }} + {{ $longOnlyEquityFund->final_close_date ?? '-' }}

    Tenure from final close

    - {{ $longOnlyEquityFund->tenure_from_final_date }} + {{ $longOnlyEquityFund->tenure_from_final_date ?? '-'}}

    Commitment period

    - {{ $longOnlyEquityFund->commitment_period }} + {{ $longOnlyEquityFund->commitment_period ?? '-'}}
    @@ -232,15 +233,15 @@

    Native currency

    - {{ $longOnlyEquityFund->native_currency }} + {{ $longOnlyEquityFund->native_currency ?? '-'}}

    Target IRR

    - {{ $longOnlyEquityFund->target_irr }} + {{ $longOnlyEquityFund->target_irr ?? '-'}}

    Initial drawdown

    - {{ $longOnlyEquityFund->intial_drawdown }} + {{ $longOnlyEquityFund->intial_drawdown ?? '-'}}
    @@ -250,11 +251,11 @@

    Investment manager contribution

    - {{ $longOnlyEquityFund->investment_manager_contribution }} + {{ $longOnlyEquityFund->investment_manager_contribution ?? '-'}}

    Minimal capital commitment

    - {{ $longOnlyEquityFund->minimum_capital_commitment }} + {{ $longOnlyEquityFund->minimum_capital_commitment ?? '-'}}
    @@ -264,11 +265,11 @@

    Target corpus

    - {{ $longOnlyEquityFund->target_corpus }} + {{ $longOnlyEquityFund->target_corpus ?? '-'}}

    Accepting Overseas investment?

    - {{ $longOnlyEquityFund->accepting_overseas_investment }} + {{ $longOnlyEquityFund->accepting_overseas_investment ?? '-'}}
    @@ -278,7 +279,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{ $longOnlyEquityFund->management_fees_and_carry }} + {{ $longOnlyEquityFund->management_fees_and_carry ?? '-'}}
    @@ -288,11 +289,11 @@

    Hurdle rate

    - {{ $longOnlyEquityFund->hurdle_rate }} + {{ $longOnlyEquityFund->hurdle_rate ?? '-'}}

    Other expenses

    - {{ $longOnlyEquityFund->other_expenses }} + {{ $longOnlyEquityFund->other_expenses ?? '-'}}
    @@ -302,21 +303,21 @@

    Focused Fund

    - {{ $longOnlyEquityFund->focused_funds }} + {{ $longOnlyEquityFund->focused_funds ?? '-'}}
    -
    + {{--

    Regions Covered (Geographical Locations covered by the fund)

    - + @dd($longOnlyEquityFund)
    -
    +
    --}} @include('Frontend.Pages.alternative-investment-fund.presentation-factsheet') diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/private-credit-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/private-credit-fund-product.blade.php index 296b951..8589fc7 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/private-credit-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/private-credit-fund-product.blade.php @@ -66,49 +66,50 @@
    - - @@ -163,29 +164,29 @@

    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 ?? '-' }}
    @@ -195,15 +196,15 @@

    Native currency

    - {{ $privateCreditFund->native_currency }} + {{ $privateCreditFund->native_currency ?? '-' }}

    Target IRR

    - {{ $privateCreditFund->target_irr }} + {{ $privateCreditFund->target_irr ?? '-' }}

    Initial drawdown

    - {{ $privateCreditFund->intial_drawdown }} + {{ $privateCreditFund->intial_drawdown ?? '-' }}
    @@ -213,11 +214,11 @@

    Investment manager contribution

    - {{ $privateCreditFund->investment_manager_contribution }} + {{ $privateCreditFund->investment_manager_contribution ?? '-' }}

    Minimal capital commitment

    - {{ $privateCreditFund->minimum_capital_commitment }} + {{ $privateCreditFund->minimum_capital_commitment ?? '-' }}
    @@ -227,11 +228,11 @@

    Target corpus

    - {{ $privateCreditFund->target_corpus }} + {{ $privateCreditFund->target_corpus ?? '-' }}

    Accepting Overseas investment

    - {{ $privateCreditFund->accepting_overseas_investment }} + {{ $privateCreditFund->accepting_overseas_investment ?? '-' }}
    @@ -241,7 +242,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{ $privateCreditFund->management_fees_and_carry }} + {{ $privateCreditFund->management_fees_and_carry ?? '-' }}
    @@ -251,11 +252,11 @@

    Hurdle rate

    - {{ $privateCreditFund->hurdle_rate }} + {{ $privateCreditFund->hurdle_rate ?? '-' }}

    Other expenses

    - {{ $privateCreditFund->other_expenses }} + {{ $privateCreditFund->other_expenses ?? '-' }}
    @@ -265,7 +266,7 @@

    Focused Sectors (Industries in which they are investing)

    - {{ $privateCreditFund->focused_sectors_industries }} + {{ $privateCreditFund->focused_sectors_industries ?? '-' }}
    @@ -275,7 +276,7 @@

    Regions Covered (Geographical Locations covered by the fund)

    - {{ $privateCreditFund->regions_covered }} + {{ $privateCreditFund->regions_covered ?? '-' }}
    diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/private-equity-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/private-equity-fund-product.blade.php index 0526788..27a4a02 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/private-equity-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/private-equity-fund-product.blade.php @@ -66,7 +66,7 @@
    - + @if ($productData && $productData->product_images != null) @@ -168,29 +169,29 @@

    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 ?? '-' }}
    @@ -200,15 +201,15 @@

    Native currency

    - {{ $privateEquityFund->native_currency }} + {{ $privateEquityFund->native_currency ?? '-' }}

    Target IRR

    - {{ $privateEquityFund->target_irr }} + {{ $privateEquityFund->target_irr ?? '-' }}

    Initial drawdown

    - {{ $privateEquityFund->intial_drawdown }} + {{ $privateEquityFund->intial_drawdown ?? '-' }}
    @@ -218,11 +219,11 @@

    Investment manager contribution

    - {{ $privateEquityFund->investment_manager_contribution }} + {{ $privateEquityFund->investment_manager_contribution ?? '-' }}

    Minimal capital commitment

    - {{ $privateEquityFund->minimum_capital_commitment }} + {{ $privateEquityFund->minimum_capital_commitment ?? '-' }}
    @@ -232,11 +233,11 @@

    Target corpus

    - {{ $privateEquityFund->target_corpus }} + {{ $privateEquityFund->target_corpus ?? '-' }}

    Accepting Overseas investment

    - {{ $privateEquityFund->accepting_overseas_investment }} + {{ $privateEquityFund->accepting_overseas_investment ?? '-' }}
    @@ -246,7 +247,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{ $privateEquityFund->management_fees_and_carry }} + {{ $privateEquityFund->management_fees_and_carry ?? '-' }}
    @@ -256,11 +257,11 @@

    Hurdle rate

    - {{ $privateEquityFund->hurdle_rate }} + {{ $privateEquityFund->hurdle_rate ?? '-' }}

    Other expenses

    - {{ $privateEquityFund->other_expenses }} + {{ $privateEquityFund->other_expenses ?? '-' }}
    @@ -270,7 +271,7 @@

    Focused Sectors (Industries in which they are investing)

    - {{ $privateEquityFund->focused_sectors_industries }} + {{ $privateEquityFund->focused_sectors_industries ?? '-' }}
    @@ -280,7 +281,7 @@

    Regions Covered (Geographical Locations covered by the fund)

    - {{ $privateEquityFund->regions_covered }} + {{ $privateEquityFund->regions_covered ?? '-' }}
    diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/private-investment-public-equity-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/private-investment-public-equity-product.blade.php index 020db1e..6cf7ef5 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/private-investment-public-equity-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/private-investment-public-equity-product.blade.php @@ -95,49 +95,50 @@
    - - @@ -192,29 +193,29 @@

    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 ?? '-'}}
    @@ -224,7 +225,7 @@

    Native currency

    - {{$pipe->native_currency}} + {{$pipe->native_currency ?? '-'}}
    @@ -232,7 +233,7 @@

    Initial drawdown

    - {{$pipe->intial_drawdown}} + {{$pipe->intial_drawdown ?? '-'}}
    @@ -242,11 +243,11 @@

    Investment manager contribution

    - {{$pipe->investment_manager_contribution}} + {{$pipe->investment_manager_contribution ?? '-'}}

    Minimal capital commitment

    - {{$pipe->minimum_capital_commitment}} + {{$pipe->minimum_capital_commitment ?? '-'}}
    @@ -256,11 +257,11 @@

    Target corpus

    - {{$pipe->target_corpus}} + {{$pipe->target_corpus ?? '-'}}

    Accepting Overseas investment?

    - {{$pipe->accepting_overseas_investment}} + {{$pipe->accepting_overseas_investment ?? '-'}}
    @@ -270,7 +271,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{$pipe->management_fees_and_carry}} + {{$pipe->management_fees_and_carry ?? '-'}}
    @@ -280,11 +281,11 @@

    Hurdle rate

    - {{$pipe->hurdle_rate}} + {{$pipe->hurdle_rate ?? '-'}}

    Other expenses

    - {{$pipe->other_expenses}} + {{$pipe->other_expenses ?? '-'}}
    diff --git a/resources/views/Frontend/Pages/alternative-investment-fund/private-real-estate-fund-product.blade.php b/resources/views/Frontend/Pages/alternative-investment-fund/private-real-estate-fund-product.blade.php index e4297e6..c5a8a1a 100644 --- a/resources/views/Frontend/Pages/alternative-investment-fund/private-real-estate-fund-product.blade.php +++ b/resources/views/Frontend/Pages/alternative-investment-fund/private-real-estate-fund-product.blade.php @@ -135,28 +135,30 @@
    - @@ -185,7 +187,7 @@

    Fund structure

    - {{ $realEstate->fund_structure }} + {{ $realEstate->fund_structure ?? '-' }}
    @@ -195,7 +197,7 @@

    Fund strategy

    -

    {{ $realEstate->fund_strategy }}

    +

    {{ $realEstate->fund_strategy ?? '-' }}

    @@ -213,7 +215,7 @@

    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 ?? '-' }}
    @@ -433,7 +435,7 @@

    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 @@
    - @@ -204,29 +206,29 @@

    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 ?? '-' }}
    @@ -236,15 +238,15 @@

    Native currency

    - {{ $ventureCapitalFund->native_currency }} + {{ $ventureCapitalFund->native_currency ?? '-' }}

    Target IRR

    - {{ $ventureCapitalFund->target_irr }} + {{ $ventureCapitalFund->target_irr ?? '-' }}

    Initial drawdown

    - {{ $ventureCapitalFund->intial_drawdown }} + {{ $ventureCapitalFund->intial_drawdown ?? '-' }}
    @@ -254,11 +256,11 @@

    Investment manager contribution

    - {{ $ventureCapitalFund->investment_manager_contribution }} + {{ $ventureCapitalFund->investment_manager_contribution ?? '-' }}

    Minimal capital commitment

    - {{ $ventureCapitalFund->minimum_capital_commitment }} + {{ $ventureCapitalFund->minimum_capital_commitment ?? '-' }}
    @@ -268,11 +270,11 @@

    Target corpus

    - {{ $ventureCapitalFund->target_corpus }} + {{ $ventureCapitalFund->target_corpus ?? '-' }}

    Accepting Overseas investment?

    - {{ $ventureCapitalFund->accepting_overseas_investment }} + {{ $ventureCapitalFund->accepting_overseas_investment ?? '-' }}
    @@ -282,7 +284,7 @@

    Management Fees and Carry - Set Up fee - Management Fee - Performace fee

    - {{ $ventureCapitalFund->management_fees_and_carry }} + {{ $ventureCapitalFund->management_fees_and_carry ?? '-' }}
    @@ -292,11 +294,11 @@

    Hurdle rate

    - {{ $ventureCapitalFund->hurdle_rate }} + {{ $ventureCapitalFund->hurdle_rate ?? '-' }}

    Other expenses

    - {{ $ventureCapitalFund->other_expenses }} + {{ $ventureCapitalFund->other_expenses ?? '-' }}
    @@ -306,7 +308,7 @@

    Focused Sectors (Industries in which they are investing)

    - {{ $ventureCapitalFund->focused_sectors_industries }} + {{ $ventureCapitalFund->focused_sectors_industries ?? '-' }}
    @@ -316,7 +318,7 @@

    Regions Covered (Geographical Locations covered by the fund)

    - {{ $ventureCapitalFund->regions_covered }} + {{ $ventureCapitalFund->regions_covered ?? '-' }}
    diff --git a/resources/views/Frontend/Pages/etfs/product.blade.php b/resources/views/Frontend/Pages/etfs/product.blade.php index f29ad7e..f715630 100644 --- a/resources/views/Frontend/Pages/etfs/product.blade.php +++ b/resources/views/Frontend/Pages/etfs/product.blade.php @@ -47,15 +47,15 @@

    Ticker

    - {{$etf->ticker}} + {{$etf->ticker ?? '-'}}

    Exchange

    - {{$etf->exchange}} + {{$etf->exchange ?? '-'}}

    About REIT

    - {{$etf->about}} + {{$etf->about ?? '-'}}
    @@ -65,15 +65,15 @@

    Provider

    - {{$etf->provider}} + {{$etf->provider ?? '-'}}

    Category

    - {{$etf->category}} + {{$etf->category ?? '-'}}

    Expense Ratio

    - {{$etf->expense_ratio}} + {{$etf->expense_ratio ?? '-'}}
    @@ -83,11 +83,11 @@

    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 ?? '-'}}
    @@ -119,12 +119,12 @@

    3 Year Return

    - {{$etf->year3_return}} + {{$etf->year3_return ?? '-'}}
    -
    + {{--
    @@ -143,7 +143,8 @@
    -
    +
    --}} + @include('Frontend.Pages.alternative-investment-fund.presentation-factsheet') diff --git a/resources/views/Frontend/Pages/fractional-real-estate/product.blade.php b/resources/views/Frontend/Pages/fractional-real-estate/product.blade.php index c731c32..5321422 100644 --- a/resources/views/Frontend/Pages/fractional-real-estate/product.blade.php +++ b/resources/views/Frontend/Pages/fractional-real-estate/product.blade.php @@ -143,20 +143,20 @@

    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

    -

    {{ $fractionalRealEstate->property_description }}

    +

    {{ $fractionalRealEstate->property_description ?? '-' }}

    @@ -165,43 +165,43 @@

    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 ?? '-' }}
    @@ -211,25 +211,25 @@

    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 ?? '-' }}
    diff --git a/resources/views/Frontend/Pages/hedge-funds/product.blade.php b/resources/views/Frontend/Pages/hedge-funds/product.blade.php index 12ab875..4033a28 100644 --- a/resources/views/Frontend/Pages/hedge-funds/product.blade.php +++ b/resources/views/Frontend/Pages/hedge-funds/product.blade.php @@ -46,15 +46,15 @@

    Issuer

    - {{$hedgeFund->issuer}} + {{$hedgeFund->issuer ?? '-'}}

    Fund Name

    - {{$hedgeFund->fund_name}} + {{$hedgeFund->fund_name ?? '-'}}

    Fund Type

    - {{$hedgeFund->fund_type}} + {{$hedgeFund->fund_type ?? '-'}}
    @@ -64,39 +64,39 @@

    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 ?? '-'}}
    @@ -106,29 +106,29 @@

    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 ?? '-'}}
    diff --git a/resources/views/Frontend/Pages/indian-real-estate/product.blade.php b/resources/views/Frontend/Pages/indian-real-estate/product.blade.php index 59ca9b3..5825813 100644 --- a/resources/views/Frontend/Pages/indian-real-estate/product.blade.php +++ b/resources/views/Frontend/Pages/indian-real-estate/product.blade.php @@ -70,15 +70,15 @@

    Property Location

    - {{$realEstate->property_location}} + {{$realEstate->property_location ?? '-'}}

    Project Type

    - {{$realEstate->project_type}} + {{$realEstate->project_type ?? '-'}}

    Current Status

    - {{$realEstate->current_status}} + {{$realEstate->current_status ?? '-'}}
    @@ -89,43 +89,43 @@

    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 ?? '-'}}>
    @@ -135,29 +135,29 @@

    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 ?? '-'}}
    @@ -167,15 +167,15 @@

    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 ?? '-'}}
    @@ -185,15 +185,15 @@

    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 ?? '-'}}
    @@ -203,11 +203,11 @@

    Pre-Leased

    - {{$realEstate->pre_leased}} + {{$realEstate->pre_leased ?? '-'}}

    Tenant Details

    - {{$realEstate->tenant_details}} + {{$realEstate->tenant_details ?? '-'}}
    @@ -217,7 +217,7 @@

    Facilities/Features

    - {{$realEstate->facilities_features}} + {{$realEstate->facilities_features ?? '-'}}
    @@ -227,11 +227,11 @@

    Construction Age

    - {{$realEstate->construction_age}} + {{$realEstate->construction_age ?? '-'}}

    Location

    - {{$realEstate->location}} + {{$realEstate->location ?? '-'}}
    @@ -241,18 +241,14 @@

    Country

    - {{$realEstate->country}} + {{$realEstate->country ?? '-'}}
    -
    -

    Remarks

    - -
    -
    + {{--
    @@ -271,7 +267,8 @@
    -
    +
    --}} + @include('Frontend.Pages.alternative-investment-fund.presentation-factsheet') diff --git a/resources/views/Frontend/Pages/marketplace/index.blade.php b/resources/views/Frontend/Pages/marketplace/index.blade.php index 1b36cc6..dead24e 100644 --- a/resources/views/Frontend/Pages/marketplace/index.blade.php +++ b/resources/views/Frontend/Pages/marketplace/index.blade.php @@ -434,11 +434,11 @@ - @php($secondTrue = true) + {{-- @php($secondTrue = true) --}} @foreach ($nonFeaturedMarketplaceListed['data'] as $freData) @if (array_key_exists('fractional-real-estate', $freData)) @foreach ($freData['fractional-real-estate'] as $data) - @php($secondTrue = false) + {{-- @php($secondTrue = false) --}}
    @@ -661,14 +661,11 @@ - {{-- No --}} - {{-- Product --}}

    No product available

    - {{-- Found --}} @@ -676,7 +673,7 @@ - @endif + @endif --}} {{--
    diff --git a/resources/views/Frontend/Pages/mutual-funds/product.blade.php b/resources/views/Frontend/Pages/mutual-funds/product.blade.php index 6d265f4..e6fe816 100644 --- a/resources/views/Frontend/Pages/mutual-funds/product.blade.php +++ b/resources/views/Frontend/Pages/mutual-funds/product.blade.php @@ -46,15 +46,15 @@

    Issuer

    - {{$mutualFund->issuer}} + {{$mutualFund->issuer ?? '-'}}

    Fund Name

    - {{$mutualFund->fund_name}} + {{$mutualFund->fund_name ?? '-'}}

    Fund Type

    - {{$mutualFund->fund_type}} + {{$mutualFund->fund_type ?? '-'}}
    @@ -64,39 +64,39 @@

    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 ?? '-'}}
    @@ -106,29 +106,29 @@

    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 ?? '-'}}
    diff --git a/resources/views/Frontend/Pages/private-equity-funds/product.blade.php b/resources/views/Frontend/Pages/private-equity-funds/product.blade.php index 45c2684..fcf7b84 100644 --- a/resources/views/Frontend/Pages/private-equity-funds/product.blade.php +++ b/resources/views/Frontend/Pages/private-equity-funds/product.blade.php @@ -45,15 +45,15 @@

    Issuer

    - {{$privateEquityFund->issuer}} + {{$privateEquityFund->issuer ?? '-'}}

    Fund Name

    - {{$privateEquityFund->fund_name}} + {{$privateEquityFund->fund_name ?? '-'}}

    Fund Type

    - {{$privateEquityFund->fund_type}} + {{$privateEquityFund->fund_type ?? '-'}}
    @@ -63,39 +63,39 @@

    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 ?? '-'}}
    @@ -105,29 +105,29 @@

    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 ?? '-'}}
    diff --git a/resources/views/Frontend/Pages/reits/product.blade.php b/resources/views/Frontend/Pages/reits/product.blade.php index 430d388..1d5b76a 100644 --- a/resources/views/Frontend/Pages/reits/product.blade.php +++ b/resources/views/Frontend/Pages/reits/product.blade.php @@ -46,15 +46,15 @@

    Ticker

    - {{$reit->ticker}} + {{$reit->ticker ?? '-'}}

    Exchange

    - {{$reit->exchange}} + {{$reit->exchange ?? '-'}}

    About REIT

    - {{$reit->about}} + {{$reit->about ?? '-'}}
    @@ -64,15 +64,15 @@

    Provider

    - {{$reit->provider}} + {{$reit->provider ?? '-'}}

    Category

    - {{$reit->category}} + {{$reit->category ?? '-'}}

    Expense Ratio

    - {{$reit->expense_ratio}} + {{$reit->expense_ratio ?? '-'}}
    @@ -82,11 +82,11 @@

    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 ?? '-'}}
    @@ -118,12 +118,12 @@

    3 Year Return

    - {{$reit->year3_return}} + {{$reit->year3_return ?? '-'}}
    -
    + {{--
    @@ -142,7 +142,8 @@
    -
    +
    --}} + @include('Frontend.Pages.alternative-investment-fund.presentation-factsheet') diff --git a/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php b/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php index bd5aa01..90359f5 100644 --- a/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php +++ b/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php @@ -75,15 +75,15 @@

    Issuer

    - {{$ventureCapitalFund->issuer}} + {{$ventureCapitalFund->issuer ?? '-'}}

    Fund Name

    - {{$ventureCapitalFund->fund_name}} + {{$ventureCapitalFund->fund_name ?? '-'}}

    Fund Type

    - {{$ventureCapitalFund->fund_type}} + {{$ventureCapitalFund->fund_type ?? '-'}}
    @@ -93,39 +93,39 @@

    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 ?? '-'}}
    @@ -135,29 +135,29 @@

    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 ?? '-'}}