diff --git a/app/Http/Controllers/Frontend/AccountsController.php b/app/Http/Controllers/Frontend/AccountsController.php index 8e6a614..b8544bc 100644 --- a/app/Http/Controllers/Frontend/AccountsController.php +++ b/app/Http/Controllers/Frontend/AccountsController.php @@ -338,6 +338,7 @@ class AccountsController extends Controller public function individualKycCreateApi(StoreIndividualKYCApi $request) { + dd($request->all()); // try { // $validator = validator::make($request->all(), [ // 'name' => [ diff --git a/app/Http/Requests/StoreCompanyKYCApi.php b/app/Http/Requests/StoreCompanyKYCApi.php index 82587f5..053d51c 100644 --- a/app/Http/Requests/StoreCompanyKYCApi.php +++ b/app/Http/Requests/StoreCompanyKYCApi.php @@ -28,26 +28,26 @@ class StoreCompanyKYCApi extends FormRequest 'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id', 'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id', 'dob' => 'required', - 'occupation' => 'regex:/^[a-zA-Z\s]+$/', - 'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/', - 'gross_annual_income' => 'regex:/^[0-9]+$/', + 'occupation' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'place_of_birth' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'gross_annual_income' => 'nullable|regex:/^[0-9]+$/', 'memorandum_or_articles_of_association' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'company_pan' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'certificate_of_incorporation' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'tan_allotment_letter' => 'mimes:jpeg,png,jpg,pdf|max:2048', - 'List_of_directors_or_authorized_signatories' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'tan_allotment_letter' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', + 'List_of_directors_or_authorized_signatories' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', // 'pan_card_copy_of_authorized_signatory' => ', 'pan_card_copy_of_authorized_signatory.*' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', // 'aadhar_card_copy_of_authorized_signatory' => ', 'aadhar_card_copy_of_authorized_signatory.*' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'proof_of_address_of_the_company' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'latest_income_tax_return_of_the_company_Of_last_2_years' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'latest_income_tax_return_of_the_company_Of_last_2_years' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'copy_of_cml' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'copy_of_audited_balance_sheet_for_the_last_2_f_y' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'copy_of_audited_balance_sheet_for_the_last_2_f_y' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', // 'passport_photo_all_authorized_signatories_or_directors' => ', 'passport_photo_all_authorized_signatories_or_directors.*' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'true_copy_form_32_or_dir_12_alongwith_roc_fee_payment' => 'mimes:jpeg,png,jpg,pdf|max:2048', - 'true_copy_form_no_18_or_inc_22_alongwith_roc_fee_payment' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'true_copy_form_32_or_dir_12_alongwith_roc_fee_payment' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', + 'true_copy_form_no_18_or_inc_22_alongwith_roc_fee_payment' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'cancelled_cheque' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', ]; } diff --git a/app/Http/Requests/StoreHUFKYCApi.php b/app/Http/Requests/StoreHUFKYCApi.php index 18fbc1b..567a9b4 100644 --- a/app/Http/Requests/StoreHUFKYCApi.php +++ b/app/Http/Requests/StoreHUFKYCApi.php @@ -28,9 +28,9 @@ class StoreHUFKYCApi extends FormRequest 'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id', 'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id', 'dob' => 'required', - 'occupation' => 'regex:/^[a-zA-Z\s]+$/', - 'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/', - 'gross_annual_income' => 'regex:/^[0-9]+$/', + 'occupation' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'place_of_birth' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'gross_annual_income' => 'nullable|regex:/^[0-9]+$/', 'deed_of_declaration' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'pan_card' => 'required', 'pan_card.*' => 'mimes:jpeg,png,jpg,pdf|max:2048', diff --git a/app/Http/Requests/StoreIndividualKYCApi.php b/app/Http/Requests/StoreIndividualKYCApi.php index e7d6c77..b71d3a0 100644 --- a/app/Http/Requests/StoreIndividualKYCApi.php +++ b/app/Http/Requests/StoreIndividualKYCApi.php @@ -28,11 +28,11 @@ class StoreIndividualKYCApi extends FormRequest 'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id', 'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id', 'dob' => 'required', - 'occupation' => 'regex:/^[a-zA-Z\s]+$/', - 'father_name' => 'regex:/^[a-zA-Z\s]+$/', - 'mother_name' => 'regex:/^[a-zA-Z\s]+$/', - 'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/', - 'gross_annual_income' => 'regex:/^[0-9]+$/', + 'occupation' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'father_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'mother_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'place_of_birth' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'gross_annual_income' => 'nullable|regex:/^[0-9]+$/', 'pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'proof_of_address' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'Photograph' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', diff --git a/app/Http/Requests/StoreNRIKYCApi.php b/app/Http/Requests/StoreNRIKYCApi.php index 1fb9d7a..3936b6f 100644 --- a/app/Http/Requests/StoreNRIKYCApi.php +++ b/app/Http/Requests/StoreNRIKYCApi.php @@ -28,14 +28,14 @@ class StoreNRIKYCApi extends FormRequest 'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id', 'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id', 'dob' => 'required', - 'father_name' => 'regex:/^[a-zA-Z\s]+$/', - 'mother_name' => 'regex:/^[a-zA-Z\s]+$/', - 'occupation' => 'regex:/^[a-zA-Z\s]+$/', - 'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/', - 'gross_annual_income' => 'regex:/^[0-9]+$/', + 'father_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'mother_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'occupation' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'place_of_birth' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'gross_annual_income' => 'nullable|regex:/^[0-9]+$/', 'passport' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'pio_oci_card' => 'mimes:jpeg,png,jpg,pdf|max:2048', - 'tin' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'pio_oci_card' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', + 'tin' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'proof_of_address_of_india' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'utility' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', @@ -43,9 +43,9 @@ class StoreNRIKYCApi extends FormRequest 'passport_size_photograph' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'cancelled_cheque' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'copy_of_cml' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'trc_copy' => 'mimes:jpeg,png,jpg,pdf|max:2048', - 'form_10f' => 'mimes:jpeg,png,jpg,pdf|max:2048', - 'no_pe_declaration' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'trc_copy' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', + 'form_10f' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', + 'no_pe_declaration' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', ]; } diff --git a/app/Http/Requests/StoreOtherKYCApi.php b/app/Http/Requests/StoreOtherKYCApi.php index 43990ab..c7a04e6 100644 --- a/app/Http/Requests/StoreOtherKYCApi.php +++ b/app/Http/Requests/StoreOtherKYCApi.php @@ -28,11 +28,11 @@ class StoreOtherKYCApi extends FormRequest 'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id', 'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id', 'dob' => 'required', - 'father_name' => 'regex:/^[a-zA-Z\s]+$/', - 'mother_name' => 'regex:/^[a-zA-Z\s]+$/', - 'occupation' => 'regex:/^[a-zA-Z\s]+$/', - 'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/', - 'gross_annual_income' => 'regex:/^[0-9]+$/', + 'father_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'mother_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'occupation' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'place_of_birth' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'gross_annual_income' => 'nullable|regex:/^[0-9]+$/', 'proof_of_identity_pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'addressproof_bank_statement_or_utility_bill' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'certificate_of_registration' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', @@ -43,8 +43,8 @@ class StoreOtherKYCApi extends FormRequest 'aadhar_card_copy_of_authorized_signatory.*' => 'mimes:jpeg,png,jpg,pdf|max:2048', 'cancelled_cheque' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'cml_copy' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'latest_income_tax_return' => 'mimes:jpeg,png,jpg,pdf|max:2048', - 'copy_of_audited_balance_sheet_for_the_last_2_F_Y' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'latest_income_tax_return' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', + 'copy_of_audited_balance_sheet_for_the_last_2_F_Y' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'passport_photo_signed_authorized_signatories_or_directors' => 'required', 'passport_photo_signed_authorized_signatories_or_directors.*' => 'mimes:jpeg,png,jpg,pdf|max:2048', ]; diff --git a/app/Http/Requests/StorePartnerShipKYCApi.php b/app/Http/Requests/StorePartnerShipKYCApi.php index 3f7ee9d..520e691 100644 --- a/app/Http/Requests/StorePartnerShipKYCApi.php +++ b/app/Http/Requests/StorePartnerShipKYCApi.php @@ -54,22 +54,22 @@ class StorePartnerShipKYCApi extends FormRequest 'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id', 'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id', 'dob' => 'required', - 'father_name' => 'regex:/^[a-zA-Z\s]+$/', - 'mother_name' => 'regex:/^[a-zA-Z\s]+$/', - 'occupation' => 'regex:/^[a-zA-Z\s]+$/', - 'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/', - 'gross_annual_income' => 'regex:/^[0-9]+$/', + 'father_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'mother_name' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'occupation' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'place_of_birth' => 'nullable|regex:/^[a-zA-Z\s]+$/', + 'gross_annual_income' => 'nullable|regex:/^[0-9]+$/', 'true_copy_of_partnership_deed' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'registration_certificate' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'list_of_partners_and_authorised_signatories' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'pan_card_copy_of_authorized_signatory.*' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'aadhar_card_copy_of_authorized_signatory.*' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'tan_allotment_letter' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'tan_allotment_letter' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'proof_of_address_firm' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'latestIincome_tax_return_of_the_firm' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'latestIincome_tax_return_of_the_firm' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'copy_of_cml' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', - 'copy_of_audited_balance_sheet_for_last' => 'mimes:jpeg,png,jpg,pdf|max:2048', + 'copy_of_audited_balance_sheet_for_last' => 'nullable|mimes:jpeg,png,jpg,pdf|max:2048', 'passport_photo_authorized_signatories_partners.*' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', 'cancelled_cheque' => 'required|mimes:jpeg,png,jpg,pdf|max:2048', ]; diff --git a/public/assets/css/FrontendCss/style.css b/public/assets/css/FrontendCss/style.css index 7025bed..9240a7c 100644 --- a/public/assets/css/FrontendCss/style.css +++ b/public/assets/css/FrontendCss/style.css @@ -2432,7 +2432,7 @@ li.item.list-item:nth-child(even) { padding-bottom: 5px; } -.tab-content>.tab-pane { +.tab-content > .tab-pane { display: none; } @@ -2520,7 +2520,7 @@ li.item.list-item:nth-child(even) { color: #c18948; } -.tab-content>.active { +.tab-content > .active { display: block; opacity: 1 !important; } @@ -4917,7 +4917,6 @@ span.color-red { text-align: center; font-size: 28px; color: #131d36; - } .testi_slider_sec p { @@ -4925,7 +4924,6 @@ span.color-red { color: #b18f62; font-size: 20px; font-weight: 500; - } .testi_slider_sec .slick-dots li button:before { @@ -4949,23 +4947,25 @@ span.color-red { gap: 44px; } - - - - /*======responsive=====*/ -@media (max-width: 2560px) {} +@media (max-width: 2560px) { +} -@media (max-width: 1920px) {} +@media (max-width: 1920px) { +} -@media (max-width: 1800px) {} +@media (max-width: 1800px) { +} -@media (max-width: 1600px) {} +@media (max-width: 1600px) { +} -@media (max-width: 1440px) {} +@media (max-width: 1440px) { +} -@media (max-width: 1366px) {} +@media (max-width: 1366px) { +} @media (max-width: 1280px) { .main-banner .investor h6 { @@ -6279,13 +6279,17 @@ span.color-red { } } -@media (max-width: 600px) {} +@media (max-width: 600px) { +} -@media (max-width: 580px) {} +@media (max-width: 580px) { +} -@media (max-width: 480px) {} +@media (max-width: 480px) { +} -@media (max-width: 420px) {} +@media (max-width: 420px) { +} @media (max-width: 380px) { .chksb p { @@ -6297,9 +6301,11 @@ span.color-red { } } -@media (max-width: 360px) {} +@media (max-width: 360px) { +} -@media (max-width: 320px) {} +@media (max-width: 320px) { +} .fix-height-modal h1 { font-size: 24px; @@ -6311,7 +6317,7 @@ span.color-red { } .notification-drop { - font-family: 'Ubuntu', sans-serif; + font-family: "Ubuntu", sans-serif; color: #444; } @@ -6362,14 +6368,12 @@ span.color-red { } } - - .notification-bell { font-size: 20px; } .btn__badge { - background: #FF5D5D; + background: #ff5d5d; color: white; font-size: 12px; position: absolute; @@ -6423,7 +6427,7 @@ span.color-red { } .notifications img { - width: 36px !IMPORTANT; + width: 36px !important; filter: brightness(0) invert(1); } @@ -6459,7 +6463,7 @@ ul.notification-drop { .inn_to_testi { width: 80%; background: #fff; - box-shadow: 0 0 16px 0px #d7d7d7; + box-shadow: 0 0 16px 0px #fcdff0; padding: 20px; vertical-align: middle; border-radius: 10px; @@ -6476,6 +6480,7 @@ ul.notification-drop { .inn_to_testi h2 { font-size: 22px; margin-bottom: 30px; + font-style: italic; } .inn_to_testi p { @@ -6514,7 +6519,8 @@ ul#user_notification { a.read_notification { font-size: 15px !important; } -p.regist, p.regist a { +p.regist, +p.regist a { color: #fff; } .rating i.fa.fa-star { @@ -6522,6 +6528,13 @@ p.regist, p.regist a { color: #ffbd59; } .about-inner-contain.aboutss:after { - content: ''; + content: ""; position: relative; -} \ No newline at end of file +} +.your-investment .accordion-button.collapsed::after { + content: ""; + transform: rotate(360deg) !important; +} +.your-investment .accordion-button::after { + transform: rotate(180deg) !important; +} 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 8db06b5..82bb084 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 @@ -134,20 +134,20 @@
Registration Number
- {{ $angelFund->registration_number ?? 'N/A' }} + {{ $angelFund->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $angelFund->fund_category ?? 'N/A' }} + {{ $angelFund->fund_category ?? '--' }}Fund structure
- {{ $angelFund->fund_structure ?? 'N/A' }} + {{ $angelFund->fund_structure ?? '--' }}Fund strategy
-Registration Number
- {{ $angelFund->registration_number ?? 'N/A' }} + {{ $angelFund->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $angelFund->fund_category ?? 'N/A' }} + {{ $angelFund->fund_category ?? '--' }}Fund structure
- {{ $angelFund->fund_structure ?? 'N/A' }} + {{ $angelFund->fund_structure ?? '--' }}Description
-Fund domicile
- {{ $angelFund->fund_domicile ?? 'N/A' }} + {{ $angelFund->fund_domicile ?? '--' }}Fund manager name
- {{ $angelFund->fund_manager_name ?? 'N/A' }} + {{ $angelFund->fund_manager_name ?? '--' }}Website of the fund
@@ -190,7 +190,7 @@ @if($angelFund->website_of_the_fund) {{$angelFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $angelFund->fund_manager_experience ?? 'N/A' }} + {{ $angelFund->fund_manager_experience ?? '--' }}Sponsor
- {{ $angelFund->sponsor ?? 'N/A' }} + {{ $angelFund->sponsor ?? '--' }}Manager
- {{ $angelFund->manager ?? 'N/A' }} + {{ $angelFund->manager ?? '--' }}Trustee
- {{ $angelFund->trustee ?? 'N/A' }} + {{ $angelFund->trustee ?? '--' }}Auditor
- {{ $angelFund->auditor ?? 'N/A' }} + {{ $angelFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $angelFund->valuer_tax_advisor ?? 'N/A' }} + {{ $angelFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $angelFund->credit_rating ?? 'N/A' }} + {{ $angelFund->credit_rating ?? '--' }}Open date
- {{ $angelFund->open_date ?? 'N/A' }} + {{ $angelFund->open_date ?? '--' }}1st close date
- {{ $angelFund->first_close_date ?? 'N/A' }} + {{ $angelFund->first_close_date ?? '--' }}Final close date
- {{ $angelFund->final_close_date ?? 'N/A' }} + {{ $angelFund->final_close_date ?? '--' }}Tenure from final close
- {{ $angelFund->tenure_from_final_date ?? 'N/A' }} + {{ $angelFund->tenure_from_final_date ?? '--' }}Commitment period
- {{ $angelFund->commitment_period ?? 'N/A' }} + {{ $angelFund->commitment_period ?? '--' }}Native currency
- {{ $angelFund->native_currency ?? 'N/A' }} + {{ $angelFund->native_currency ?? '--' }}Target IRR
- {{ $angelFund->target_irr ?? 'N/A' }} + {{ $angelFund->target_irr ?? '--' }}Initial drawdown
- {{ $angelFund->intial_drawdown ?? 'N/A' }} + {{ $angelFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $angelFund->investment_manager_contribution ?? 'N/A' }} + {{ $angelFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $angelFund->minimum_capital_commitment ?? 'N/A' }} + {{ $angelFund->minimum_capital_commitment ?? '--' }}Target corpus
- {{ $angelFund->target_corpus ?? 'N/A' }} + {{ $angelFund->target_corpus ?? '--' }}Accepting Overseas investment?
- {{ $angelFund->accepting_overseas_investment ?? 'N/A' }} + {{ $angelFund->accepting_overseas_investment ?? '--' }}Involved In Short Selling
- {{ $productData->involved_in_short_selling ?? 'N/A'}} + {{ $productData->involved_in_short_selling ?? '--'}}Trading Strategy
- {{ $productData->trading_strategy ?? 'N/A'}} + {{ $productData->trading_strategy ?? '--'}}Focused Funds
- {{ $productData->focused_funds ?? 'N/A' }} + {{ $productData->focused_funds ?? '--' }}Valuation Per Sector
- {{ $productData->valuation_per_sector ?? 'N/A'}} + {{ $productData->valuation_per_sector ?? '--'}}Return On Investment
- {{ $productData->return_on_investment ?? 'N/A' }} + {{ $productData->return_on_investment ?? '--' }}Rera Complied Property
- {{ $productData->rera_complied_property ?? 'N/A' }} + {{ $productData->rera_complied_property ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $angelFund->management_fees_and_carry ?? 'N/A' }} + {{ $angelFund->management_fees_and_carry ?? '--' }}Hurdle rate
- {{ $angelFund->hurdle_rate ?? 'N/A' }} + {{ $angelFund->hurdle_rate ?? '--' }}Other expenses
- {{ $angelFund->other_expenses ?? 'N/A' }} + {{ $angelFund->other_expenses ?? '--' }}Focused Sectors (Industries in which they are investing)
- {{ $angelFund->focused_sectors_industries ?? 'N/A' }} + {{ $angelFund->focused_sectors_industries ?? '--' }}Minimum Investment
- {{ $angelFund->minimum_investment ?? 'N/A' }} + {{ $angelFund->minimum_investment ?? '--' }}Focused Real Estate Sectors
- {{ $angelFund->focused_real_estate_sectors ?? 'N/A' }} + {{ $angelFund->focused_real_estate_sectors ?? '--' }}Trading Strategy Used
- {{ $productData->trading_strategy_used ?? 'N/A' }} + {{ $productData->trading_strategy_used ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $angelFund->regions_covered ?? 'N/A' }} + {{ $angelFund->regions_covered ?? '--' }}Registration Number
- {{ $productData->registration_number ?? 'N/A' }} + {{ $productData->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $fundForDistressedAsset->fund_category ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_category ?? '--' }} @@ -193,7 +193,7 @@Fund structure
- {{ $fundForDistressedAsset->fund_structure ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_structure ?? '--' }} @@ -203,7 +203,7 @@Fund strategy
-Fund category (I/II/II)
- {{ $fundForDistressedAsset->fund_category ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_category ?? '--' }} @@ -236,7 +236,7 @@Fund structure
- {{ $fundForDistressedAsset->fund_structure ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_structure ?? '--' }} @@ -246,7 +246,7 @@Description
-Fund domicile
- {{ $fundForDistressedAsset->fund_domicile ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_domicile ?? '--' }} @@ -272,7 +272,7 @@Fund manager name
- {{ $fundForDistressedAsset->fund_manager_name ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_manager_name ?? '--' }} @@ -280,12 +280,12 @@Website of the fund
- {{-- {{ $fundForDistressedAsset->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $fundForDistressedAsset->website_of_the_fund ?? '--' }} --}} @if($fundForDistressedAsset->website_of_the_fund) {{$fundForDistressedAsset->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endif @@ -299,7 +299,7 @@Fund manager experience
- {{ $fundForDistressedAsset->fund_manager_experience ?? 'N/A' }} + {{ $fundForDistressedAsset->fund_manager_experience ?? '--' }} @@ -307,7 +307,7 @@Sponsor
- {{ $fundForDistressedAsset->sponsor ?? 'N/A' }} + {{ $fundForDistressedAsset->sponsor ?? '--' }} @@ -315,7 +315,7 @@Manager
- {{ $fundForDistressedAsset->manager ?? 'N/A' }} + {{ $fundForDistressedAsset->manager ?? '--' }} @@ -327,7 +327,7 @@Trustee
- {{ $fundForDistressedAsset->trustee ?? 'N/A' }} + {{ $fundForDistressedAsset->trustee ?? '--' }} @@ -335,7 +335,7 @@Auditor
- {{ $fundForDistressedAsset->auditor ?? 'N/A' }} + {{ $fundForDistressedAsset->auditor ?? '--' }} @@ -343,7 +343,7 @@Valuer / Tax Advisory
- {{ $fundForDistressedAsset->valuer_tax_advisor ?? 'N/A' }} + {{ $fundForDistressedAsset->valuer_tax_advisor ?? '--' }} @@ -363,7 +363,7 @@Credit rating (if any)
- {{ $fundForDistressedAsset->credit_rating ?? 'N/A' }} + {{ $fundForDistressedAsset->credit_rating ?? '--' }} @@ -371,7 +371,7 @@Open date
- {{ $fundForDistressedAsset->open_date ?? 'N/A' }} + {{ $fundForDistressedAsset->open_date ?? '--' }} @@ -379,7 +379,7 @@1st close date
- {{ $fundForDistressedAsset->first_close_date ?? 'N/A' }} + {{ $fundForDistressedAsset->first_close_date ?? '--' }} @@ -391,7 +391,7 @@Final close date
- {{ $fundForDistressedAsset->final_close_date ?? 'N/A' }} + {{ $fundForDistressedAsset->final_close_date ?? '--' }} @@ -407,7 +407,7 @@Commitment period
- {{ $fundForDistressedAsset->commitment_period ?? 'N/A' }} + {{ $fundForDistressedAsset->commitment_period ?? '--' }} @@ -427,7 +427,7 @@Native currency
- {{ $fundForDistressedAsset->native_currency ?? 'N/A' }} + {{ $fundForDistressedAsset->native_currency ?? '--' }} @@ -435,7 +435,7 @@Target IRR
- {{ $fundForDistressedAsset->target_irr ?? 'N/A' }} + {{ $fundForDistressedAsset->target_irr ?? '--' }} @@ -443,7 +443,7 @@Initial drawdown
- {{ $fundForDistressedAsset->intial_drawdown ?? 'N/A' }} + {{ $fundForDistressedAsset->intial_drawdown ?? '--' }} @@ -463,7 +463,7 @@Investment manager contribution
- {{ $fundForDistressedAsset->investment_manager_contribution ?? 'N/A' }} + {{ $fundForDistressedAsset->investment_manager_contribution ?? '--' }} @@ -471,7 +471,7 @@Minimal capital commitment
- {{ $fundForDistressedAsset->minimum_capital_commitment ?? 'N/A' }} + {{ $fundForDistressedAsset->minimum_capital_commitment ?? '--' }} @@ -491,7 +491,7 @@Target corpus
- {{ $fundForDistressedAsset->target_corpus ?? 'N/A' }} + {{ $fundForDistressedAsset->target_corpus ?? '--' }} @@ -499,14 +499,14 @@Accepting Overseas investment?
- {{ $fundForDistressedAsset->accepting_overseas_investment ?? 'N/A' }} + {{ $fundForDistressedAsset->accepting_overseas_investment ?? '--' }} {{--Company
- {{ $fundForDistressedAsset->company->company_name ?? 'N/A' }} + {{ $fundForDistressedAsset->company->company_name ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $fundForDistressedAsset->management_fees_and_carry ?? 'N/A' }} + {{ $fundForDistressedAsset->management_fees_and_carry ?? '--' }}Minimum Investment
- {{ $fundForDistressedAsset->minimum_investment ?? 'N/A' }} + {{ $fundForDistressedAsset->minimum_investment ?? '--' }}Tenure from final close
- {{ $fundForDistressedAsset->tenure_from_final_close ?? 'N/A' }} + {{ $fundForDistressedAsset->tenure_from_final_close ?? '--' }}Hurdle rate
- {{ $fundForDistressedAsset->hurdle_rate ?? 'N/A' }} + {{ $fundForDistressedAsset->hurdle_rate ?? '--' }} @@ -568,7 +568,7 @@Other expenses
- {{ $fundForDistressedAsset->other_expenses ?? 'N/A' }} + {{ $fundForDistressedAsset->other_expenses ?? '--' }} @@ -576,7 +576,7 @@isin code
- {{ $fundForDistressedAsset->isin_code ?? 'N/A' }} + {{ $fundForDistressedAsset->isin_code ?? '--' }} @@ -597,14 +597,14 @@Focused Sectors (Industries in which they are investing)
- {{ $fundForDistressedAsset->focused_sectors_industries ?? 'N/A' }} + {{ $fundForDistressedAsset->focused_sectors_industries ?? '--' }}Focused Real Estate Sectors
- {{ $productData->focused_real_estate_sectors ?? 'N/A' }} + {{ $productData->focused_real_estate_sectors ?? '--' }}Involved In Short Selling
- {{ $productData->involved_in_short_selling ?? 'N/A' }} + {{ $productData->involved_in_short_selling ?? '--' }}Focused Funds
- {{ $productData->focused_funds ?? 'N/A' }} + {{ $productData->focused_funds ?? '--' }} @@ -647,7 +647,7 @@Valuation Per Sector
- {{ $productData->valuation_per_sector ?? 'N/A' }} + {{ $productData->valuation_per_sector ?? '--' }} @@ -668,7 +668,7 @@Return On Investment
- {{ $productData->return_on_investment ?? 'N/A' }} + {{ $productData->return_on_investment ?? '--' }} @@ -676,14 +676,14 @@Rera Complied Property
- {{ $productData->rera_complied_property ?? 'N/A' }} + {{ $productData->rera_complied_property ?? '--' }}Trading Strategy
- {{ $productData->trading_strategy ?? 'N/A' }} + {{ $productData->trading_strategy ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $productData->regions_covered ?? 'N/A' }} + {{ $productData->regions_covered ?? '--' }} 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 eb74733..7ed43c7 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 @@ -129,20 +129,20 @@Registration Number
- {{ $hedgeFund->registration_number ?? 'N/A' }} + {{ $hedgeFund->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $hedgeFund->fund_category ?? 'N/A' }} + {{ $hedgeFund->fund_category ?? '--' }}Fund structure
- {{ $hedgeFund->fund_structure ?? 'N/A' }} + {{ $hedgeFund->fund_structure ?? '--' }}Fund strategy
-Registration Number
- {{ $hedgeFund->registration_number ?? 'N/A' }} + {{ $hedgeFund->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $hedgeFund->fund_category ?? 'N/A' }} + {{ $hedgeFund->fund_category ?? '--' }}Fund structure
- {{ $hedgeFund->fund_structure ?? 'N/A' }} + {{ $hedgeFund->fund_structure ?? '--' }}Description
-Fund domicile
- {{ $hedgeFund->fund_domicile ?? 'N/A' }} + {{ $hedgeFund->fund_domicile ?? '--' }}Fund manager name
- {{ $hedgeFund->fund_manager_name ?? 'N/A' }} + {{ $hedgeFund->fund_manager_name ?? '--' }}Website of the fund
- {{-- {{ $hedgeFund->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $hedgeFund->website_of_the_fund ?? '--' }} --}} @if($hedgeFund->website_of_the_fund) {{$hedgeFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $hedgeFund->fund_manager_experience ?? 'N/A' }} + {{ $hedgeFund->fund_manager_experience ?? '--' }}Sponsor
- {{ $hedgeFund->sponsor ?? 'N/A' }} + {{ $hedgeFund->sponsor ?? '--' }}Manager
- {{ $hedgeFund->manager ?? 'N/A' }} + {{ $hedgeFund->manager ?? '--' }}Trustee
- {{ $hedgeFund->trustee ?? 'N/A' }} + {{ $hedgeFund->trustee ?? '--' }}Auditor
- {{ $hedgeFund->auditor ?? 'N/A' }} + {{ $hedgeFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $hedgeFund->valuer_tax_advisor ?? 'N/A' }} + {{ $hedgeFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $hedgeFund->credit_rating ?? 'N/A' }} + {{ $hedgeFund->credit_rating ?? '--' }}Open date
- {{ $hedgeFund->open_date ?? 'N/A' }} + {{ $hedgeFund->open_date ?? '--' }}1st close date
- {{ $hedgeFund->first_close_date ?? 'N/A' }} + {{ $hedgeFund->first_close_date ?? '--' }}Final close date
- {{ $hedgeFund->final_close_date ?? 'N/A' }} + {{ $hedgeFund->final_close_date ?? '--' }}Tenure from final close
- {{ $hedgeFund->tenure_from_final_date ?? 'N/A' }} + {{ $hedgeFund->tenure_from_final_date ?? '--' }}Commitment period
- {{ $hedgeFund->commitment_period ?? 'N/A' }} + {{ $hedgeFund->commitment_period ?? '--' }}Native currency
- {{ $hedgeFund->native_currency ?? 'N/A' }} + {{ $hedgeFund->native_currency ?? '--' }}Target IRR
- {{ $hedgeFund->target_irr ?? 'N/A' }} + {{ $hedgeFund->target_irr ?? '--' }}Initial drawdown
- {{ $hedgeFund->intial_drawdown ?? 'N/A' }} + {{ $hedgeFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $hedgeFund->investment_manager_contribution ?? 'N/A' }} + {{ $hedgeFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $hedgeFund->minimum_capital_commitment ?? 'N/A' }} + {{ $hedgeFund->minimum_capital_commitment ?? '--' }}Return on investment
- {{ $hedgeFund->return_on_investment ?? 'N/A' }} + {{ $hedgeFund->return_on_investment ?? '--' }}Target corpus
- {{ $hedgeFund->target_corpus ?? 'N/A' }} + {{ $hedgeFund->target_corpus ?? '--' }}Accepting Overseas investment?
- {{ $hedgeFund->accepting_overseas_investment ?? 'N/A' }} + {{ $hedgeFund->accepting_overseas_investment ?? '--' }}Valuation per sector
- {{ $hedgeFund->valuation_per_sector ?? 'N/A' }} + {{ $hedgeFund->valuation_per_sector ?? '--' }}Hurdle rate
- {{ $hedgeFund->hurdle_rate ?? 'N/A' }} + {{ $hedgeFund->hurdle_rate ?? '--' }}Other expenses
- {{ $hedgeFund->other_expenses ?? 'N/A' }} + {{ $hedgeFund->other_expenses ?? '--' }}Trading strategy
- {{ $hedgeFund->trading_strategy ?? 'N/A' }} + {{ $hedgeFund->trading_strategy ?? '--' }}Focused Fund
- {{ $hedgeFund->focused_funds ?? 'N/A' }} + {{ $hedgeFund->focused_funds ?? '--' }}Minimum Investment
- {{ $hedgeFund->minimum_investment ?? 'N/A' }} + {{ $hedgeFund->minimum_investment ?? '--' }}Involved in short selling
- {{ $hedgeFund->involved_in_short_selling ?? 'N/A' }} + {{ $hedgeFund->involved_in_short_selling ?? '--' }}Company
- {{ $hedgeFund->company == null ? 'N/A' : $hedgeFund->company->company_name }} + {{ $hedgeFund->company == null ? '--' : $hedgeFund->company->company_name }}ISIN Code
- {{ $hedgeFund->isin_code == null ? 'N/A' : $hedgeFund->isin_code }} + {{ $hedgeFund->isin_code == null ? '--' : $hedgeFund->isin_code }}Focused Real Estate Sectors
- {{ $hedgeFund->focused_real_estate_sectors == null ? 'N/A' : $hedgeFund->focused_real_estate_sectors }} + {{ $hedgeFund->focused_real_estate_sectors == null ? '--' : $hedgeFund->focused_real_estate_sectors }}Regions Covered
- {{ $hedgeFund->regions_covered == null ? 'N/A' : $hedgeFund->regions_covered }} + {{ $hedgeFund->regions_covered == null ? '--' : $hedgeFund->regions_covered }}Rera Complied Property
- {{ $hedgeFund->rera_complied_property == null ? 'N/A' : $hedgeFund->rera_complied_property }} + {{ $hedgeFund->rera_complied_property == null ? '--' : $hedgeFund->rera_complied_property }}Return On Investment
- {{ $hedgeFund->return_on_investment == null ? 'N/A' : $hedgeFund->return_on_investment }} + {{ $hedgeFund->return_on_investment == null ? '--' : $hedgeFund->return_on_investment }}Fund category (I/II/II)
- {{ $infrastructureFund->fund_category ?? 'N/A' }} + {{ $infrastructureFund->fund_category ?? '--' }}Fund structure
- {{ $infrastructureFund->fund_structure ?? 'N/A' }} + {{ $infrastructureFund->fund_structure ?? '--' }}Fund strategy
- {{ $infrastructureFund->fund_strategy ?? 'N/A' }} + {{ $infrastructureFund->fund_strategy ?? '--' }}Description
-Fund strategy
- {{ $infrastructureFund->fund_strategy ?? 'N/A' }} + {{ $infrastructureFund->fund_strategy ?? '--' }}Description
-Fund domicile
- {{ $infrastructureFund->fund_domicile ?? 'N/A' }} + {{ $infrastructureFund->fund_domicile ?? '--' }}Fund manager name
- {{ $infrastructureFund->fund_manager_name ?? 'N/A' }} + {{ $infrastructureFund->fund_manager_name ?? '--' }}Fund manager experience
- {{ $infrastructureFund->fund_manager_experience ?? 'N/A' }} + {{ $infrastructureFund->fund_manager_experience ?? '--' }}Website of the fund
- {{-- {{ $infrastructureFund->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $infrastructureFund->website_of_the_fund ?? '--' }} --}} @if($infrastructureFund->website_of_the_fund) {{$infrastructureFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifSponsor
- {{ $infrastructureFund->sponsor ?? 'N/A' }} + {{ $infrastructureFund->sponsor ?? '--' }}Manager
- {{ $infrastructureFund->manager ?? 'N/A' }} + {{ $infrastructureFund->manager ?? '--' }}Trustee
- {{ $infrastructureFund->trustee ?? 'N/A' }} + {{ $infrastructureFund->trustee ?? '--' }}Auditor
- {{ $infrastructureFund->auditor ?? 'N/A' }} + {{ $infrastructureFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $infrastructureFund->valuer_tax_advisor ?? 'N/A' }} + {{ $infrastructureFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $infrastructureFund->credit_rating ?? 'N/A' }} + {{ $infrastructureFund->credit_rating ?? '--' }}Open date
- {{ $infrastructureFund->open_date ?? 'N/A' }} + {{ $infrastructureFund->open_date ?? '--' }}1st close date
- {{ $infrastructureFund->first_close_date ?? 'N/A' }} + {{ $infrastructureFund->first_close_date ?? '--' }}Final close date
- {{ $infrastructureFund->final_close_date ?? 'N/A' }} + {{ $infrastructureFund->final_close_date ?? '--' }}Commitment period
- {{ $infrastructureFund->commitment_period ?? 'N/A' }} + {{ $infrastructureFund->commitment_period ?? '--' }}Native currency
- {{ $infrastructureFund->native_currency ?? 'N/A' }} + {{ $infrastructureFund->native_currency ?? '--' }}Target IRR
- {{ $infrastructureFund->target_irr ?? 'N/A' }} + {{ $infrastructureFund->target_irr ?? '--' }}Initial drawdown
- {{ $infrastructureFund->intial_drawdown ?? 'N/A' }} + {{ $infrastructureFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $infrastructureFund->investment_manager_contribution ?? 'N/A' }} + {{ $infrastructureFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $infrastructureFund->minimum_capital_commitment ?? 'N/A' }} + {{ $infrastructureFund->minimum_capital_commitment ?? '--' }}Target corpus
- {{ $infrastructureFund->target_corpus ?? 'N/A' }} + {{ $infrastructureFund->target_corpus ?? '--' }}Accepting Overseas investment?
- {{ $infrastructureFund->accepting_overseas_investment ?? 'N/A' }} + {{ $infrastructureFund->accepting_overseas_investment ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $infrastructureFund->management_fees_and_carry ?? 'N/A' }} + {{ $infrastructureFund->management_fees_and_carry ?? '--' }}Minimum Investment
- {{ $infrastructureFund->minimum_investment ?? 'N/A' }} + {{ $infrastructureFund->minimum_investment ?? '--' }}Hurdle rate
- {{ $infrastructureFund->hurdle_rate ?? 'N/A' }} + {{ $infrastructureFund->hurdle_rate ?? '--' }}Other expenses
- {{ $infrastructureFund->other_expenses ?? 'N/A' }} + {{ $infrastructureFund->other_expenses ?? '--' }}ISIN code
- {{ $infrastructureFund->isin_code ?? 'N/A' }} + {{ $infrastructureFund->isin_code ?? '--' }}Focused Sectors (Industries in which they are investing)
- {{ $infrastructureFund->focused_sectors_industries ?? 'N/A' }} + {{ $infrastructureFund->focused_sectors_industries ?? '--' }}Tenure from final close
- {{ $infrastructureFund->tenure_from_final_close ?? 'N/A' }} + {{ $infrastructureFund->tenure_from_final_close ?? '--' }}Involved In Short Selling
- {{ $productData->involved_in_short_selling ?? 'N/A' }} + {{ $productData->involved_in_short_selling ?? '--' }}Trading Strategy
- {{ $productData->trading_strategy ?? 'N/A' }} + {{ $productData->trading_strategy ?? '--' }}Focused Funds
- {{ $productData->focused_funds ?? 'N/A' }} + {{ $productData->focused_funds ?? '--' }}Valuation Per Sector
- {{ $productData->valuation_per_sector ?? 'N/A' }} + {{ $productData->valuation_per_sector ?? '--' }}Return On Investment
- {{ $productData->return_on_investment ?? 'N/A' }} + {{ $productData->return_on_investment ?? '--' }}Rera Complied Property
- {{ $productData->rera_complied_property ?? 'N/A' }} + {{ $productData->rera_complied_property ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $infrastructureFund->regions_covered ?? 'N/A' }} + {{ $infrastructureFund->regions_covered ?? '--' }}Trading Strategy Used
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 5ebaa95..76251ac 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 @@ -58,7 +58,7 @@ @@ -169,20 +169,20 @@ {{--Registration Number
- {{ $longOnlyEquityFund->registration_number ?? 'N/A' }} + {{ $longOnlyEquityFund->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $longOnlyEquityFund->fund_category ?? 'N/A' }} + {{ $longOnlyEquityFund->fund_category ?? '--' }}Fund structure
- {{ $longOnlyEquityFund->fund_structure ?? 'N/A' }} + {{ $longOnlyEquityFund->fund_structure ?? '--' }}Description
-Fund domicile
- {{ $longOnlyEquityFund->fund_domicile ?? 'N/A' }} + {{ $longOnlyEquityFund->fund_domicile ?? '--' }}Fund manager name
- {{ $longOnlyEquityFund->fund_manager_name ?? 'N/A' }} + {{ $longOnlyEquityFund->fund_manager_name ?? '--' }}Website of the fund
- {{-- {{ $longOnlyEquityFund->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $longOnlyEquityFund->website_of_the_fund ?? '--' }} --}} @if($longOnlyEquityFund->website_of_the_fund) {{$longOnlyEquityFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $longOnlyEquityFund->fund_manager_experience ?? 'N/A' }} + {{ $longOnlyEquityFund->fund_manager_experience ?? '--' }}Sponsor
- {{ $longOnlyEquityFund->sponsor ?? 'N/A' }} + {{ $longOnlyEquityFund->sponsor ?? '--' }}Manager
- {{ $longOnlyEquityFund->manager ?? 'N/A' }} + {{ $longOnlyEquityFund->manager ?? '--' }}Trustee
- {{ $longOnlyEquityFund->trustee ?? 'N/A' }} + {{ $longOnlyEquityFund->trustee ?? '--' }}Auditor
- {{ $longOnlyEquityFund->auditor ?? 'N/A' }} + {{ $longOnlyEquityFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $longOnlyEquityFund->valuer_tax_advisor ?? 'N/A' }} + {{ $longOnlyEquityFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $longOnlyEquityFund->credit_rating ?? 'N/A' }} + {{ $longOnlyEquityFund->credit_rating ?? '--' }}Open date
- {{ $longOnlyEquityFund->open_date ?? 'N/A' }} + {{ $longOnlyEquityFund->open_date ?? '--' }}1st close date
- {{ $longOnlyEquityFund->first_close_date ?? 'N/A' }} + {{ $longOnlyEquityFund->first_close_date ?? '--' }}Final close date
- {{ $longOnlyEquityFund->final_close_date ?? 'N/A' }} + {{ $longOnlyEquityFund->final_close_date ?? '--' }}Tenure from final close
- {{ $longOnlyEquityFund->tenure_from_final_date ?? 'N/A' }} + {{ $longOnlyEquityFund->tenure_from_final_date ?? '--' }}Commitment period
- {{ $longOnlyEquityFund->commitment_period ?? 'N/A' }} + {{ $longOnlyEquityFund->commitment_period ?? '--' }}Native currency
- {{ $longOnlyEquityFund->native_currency ?? 'N/A' }} + {{ $longOnlyEquityFund->native_currency ?? '--' }}Target IRR
- {{ $longOnlyEquityFund->target_irr ?? 'N/A' }} + {{ $longOnlyEquityFund->target_irr ?? '--' }}Initial drawdown
- {{ $longOnlyEquityFund->intial_drawdown ?? 'N/A' }} + {{ $longOnlyEquityFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $longOnlyEquityFund->investment_manager_contribution ?? 'N/A' }} + {{ $longOnlyEquityFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $longOnlyEquityFund->minimum_capital_commitment ?? 'N/A' }} + {{ $longOnlyEquityFund->minimum_capital_commitment ?? '--' }}Return on investment
- {{ $longOnlyEquityFund->return_on_investment_irr_dpi_rvpi_tvpi ?? 'N/A' }} + {{ $longOnlyEquityFund->return_on_investment_irr_dpi_rvpi_tvpi ?? '--' }}Target corpus
- {{ $longOnlyEquityFund->target_corpus ?? 'N/A' }} + {{ $longOnlyEquityFund->target_corpus ?? '--' }}Accepting Overseas investment?
- {{ $longOnlyEquityFund->accepting_overseas_investment ?? 'N/A' }} + {{ $longOnlyEquityFund->accepting_overseas_investment ?? '--' }}Valuation per sector
- {{ $longOnlyEquityFund->valuation_per_sector ?? 'N/A' }} + {{ $longOnlyEquityFund->valuation_per_sector ?? '--' }}Valuation per security (NAV)
- {{ $longOnlyEquityFund->valuation_per_security_nav ?? 'N/A' }} + {{ $longOnlyEquityFund->valuation_per_security_nav ?? '--' }}Focused Sector Industries
- {{ $longOnlyEquityFund->focused_sectors_industries ?? 'N/A' }} + {{ $longOnlyEquityFund->focused_sectors_industries ?? '--' }}Rera Complied Property
- {{ $longOnlyEquityFund->rera_complied_property ?? 'N/A' }} + {{ $longOnlyEquityFund->rera_complied_property ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $longOnlyEquityFund->management_fees_and_carry ?? 'N/A' }} + {{ $longOnlyEquityFund->management_fees_and_carry ?? '--' }}Minimum Investment
- {{ $longOnlyEquityFund->minimum_investment ?? 'N/A' }} + {{ $longOnlyEquityFund->minimum_investment ?? '--' }}Trading strategy
- {{ $longOnlyEquityFund->trading_strategy ?? 'N/A' }} + {{ $longOnlyEquityFund->trading_strategy ?? '--' }}Trading Strategy Used
- {{ $longOnlyEquityFund->trading_strategy_used ?? 'N/A' }} + {{ $longOnlyEquityFund->trading_strategy_used ?? '--' }}Hurdle rate
- {{ $longOnlyEquityFund->hurdle_rate.' %' ?? 'N/A' }} + {{ $longOnlyEquityFund->hurdle_rate.' %' ?? '--' }}Other expenses
- {{ $longOnlyEquityFund->other_expenses ?? 'N/A' }} + {{ $longOnlyEquityFund->other_expenses ?? '--' }}Involved in short selling
- {{ $longOnlyEquityFund->involved_in_short_selling ?? 'N/A' }} + {{ $longOnlyEquityFund->involved_in_short_selling ?? '--' }}Rera Complied Property
- {{ $productData->rera_complied_property ?? 'N/A' }} + {{ $productData->rera_complied_property ?? '--' }}Focused Fund
- {{ $longOnlyEquityFund->focused_funds ?? 'N/A' }} + {{ $longOnlyEquityFund->focused_funds ?? '--' }}Regions Covered
- {{ $longOnlyEquityFund->regions_covered ?? 'N/A' }} + {{ $longOnlyEquityFund->regions_covered ?? '--' }}ISIN Code
- {{ $longOnlyEquityFund->isin_code ?? 'N/A' }} + {{ $longOnlyEquityFund->isin_code ?? '--' }}Focused Real Estate Sectors
- {{ $longOnlyEquityFund->focused_real_estate_sectors ?? 'N/A' }} + {{ $longOnlyEquityFund->focused_real_estate_sectors ?? '--' }}Regions Covered
- {{ $longOnlyEquityFund->regions_covered ?? 'N/A' }} + {{ $longOnlyEquityFund->regions_covered ?? '--' }}ISIN Code
- {{ $longOnlyEquityFund->isin_code ?? 'N/A' }} + {{ $longOnlyEquityFund->isin_code ?? '--' }}Registration Number
- {{ $privateCreditFund->registration_number ?? 'N/A' }} + {{ $privateCreditFund->registration_number ?? '--' }}Fund category
- {{ $privateCreditFund->fund_category ?? 'N/A' }} + {{ $privateCreditFund->fund_category ?? '--' }}Fund structure
- {{ $privateCreditFund->fund_structure ?? 'N/A' }} + {{ $privateCreditFund->fund_structure ?? '--' }}Fund strategy
-Valuation per sector
- {{ $privateCreditFund->valuation_per_sector ?? 'N/A' }} + {{ $privateCreditFund->valuation_per_sector ?? '--' }}Focused funds
- {{ $privateCreditFund->focused_funds ?? 'N/A' }} + {{ $privateCreditFund->focused_funds ?? '--' }}Trading strategy
- {{ $privateCreditFund->trading_strategy ?? 'N/A' }} + {{ $privateCreditFund->trading_strategy ?? '--' }}Involved in short selling
-Trading strategy used
@@ -148,11 +148,11 @@ {{--Valuation per security nav
-Trading strategy used
-Description
-Fund domicile
- {{ $privateCreditFund->fund_domicile ?? 'N/A' }} + {{ $privateCreditFund->fund_domicile ?? '--' }}Fund manager name
- {{ $privateCreditFund->fund_manager_name ?? 'N/A' }} + {{ $privateCreditFund->fund_manager_name ?? '--' }}Website of the fund
- {{-- {{ $privateCreditFund->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $privateCreditFund->website_of_the_fund ?? '--' }} --}} @if($privateCreditFund->website_of_the_fund) {{$privateCreditFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $privateCreditFund->fund_manager_experience ?? 'N/A' }} + {{ $privateCreditFund->fund_manager_experience ?? '--' }}Sponsor
- {{ $privateCreditFund->sponsor ?? 'N/A' }} + {{ $privateCreditFund->sponsor ?? '--' }}Manager
- {{ $privateCreditFund->manager ?? 'N/A' }} + {{ $privateCreditFund->manager ?? '--' }}Trustee
- {{ $privateCreditFund->trustee ?? 'N/A' }} + {{ $privateCreditFund->trustee ?? '--' }}Auditor
- {{ $privateCreditFund->auditor ?? 'N/A' }} + {{ $privateCreditFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $privateCreditFund->valuer_tax_advisor ?? 'N/A' }} + {{ $privateCreditFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $privateCreditFund->credit_rating ?? 'N/A' }} + {{ $privateCreditFund->credit_rating ?? '--' }}Open date
- {{ $privateCreditFund->open_date ?? 'N/A' }} + {{ $privateCreditFund->open_date ?? '--' }}1st close date
- {{ $privateCreditFund->first_close_date ?? 'N/A' }} + {{ $privateCreditFund->first_close_date ?? '--' }}Final close date
- {{ $privateCreditFund->final_close_date ?? 'N/A' }} + {{ $privateCreditFund->final_close_date ?? '--' }}Tenure from final close
- {{ $privateCreditFund->tenure_from_final_date ?? 'N/A' }} + {{ $privateCreditFund->tenure_from_final_date ?? '--' }}Commitment period
- {{ $privateCreditFund->commitment_period ?? 'N/A' }} + {{ $privateCreditFund->commitment_period ?? '--' }}Native currency
- {{ $privateCreditFund->native_currency ?? 'N/A' }} + {{ $privateCreditFund->native_currency ?? '--' }}Target IRR
- {{ $privateCreditFund->target_irr ?? 'N/A' }} + {{ $privateCreditFund->target_irr ?? '--' }}Initial drawdown
- {{ $privateCreditFund->intial_drawdown ?? 'N/A' }} + {{ $privateCreditFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $privateCreditFund->investment_manager_contribution ?? 'N/A' }} + {{ $privateCreditFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $privateCreditFund->minimum_capital_commitment ?? 'N/A' }} + {{ $privateCreditFund->minimum_capital_commitment ?? '--' }}isin code
- {{ $privateCreditFund->isin_code ?? 'N/A' }} + {{ $privateCreditFund->isin_code ?? '--' }}Target corpus
- {{ $privateCreditFund->target_corpus ?? 'N/A' }} + {{ $privateCreditFund->target_corpus ?? '--' }}Accepting Overseas investment
- {{ $privateCreditFund->accepting_overseas_investment ?? 'N/A' }} + {{ $privateCreditFund->accepting_overseas_investment ?? '--' }}Focused real estate sectors
- {{ $privateCreditFund->focused_real_estate_sectors ?? 'N/A' }} + {{ $privateCreditFund->focused_real_estate_sectors ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $privateCreditFund->management_fees_and_carry ?? 'N/A' }} + {{ $privateCreditFund->management_fees_and_carry ?? '--' }}Minimum Investment
- {{ $privateCreditFund->minimum_investment ?? 'N/A' }} + {{ $privateCreditFund->minimum_investment ?? '--' }}Rera complied property
- {{ $privateCreditFund->rera_complied_property ?? 'N/A' }} + {{ $privateCreditFund->rera_complied_property ?? '--' }}Hurdle rate
- {{ $privateCreditFund->hurdle_rate ?? 'N/A' }} + {{ $privateCreditFund->hurdle_rate ?? '--' }}Other expenses
- {{ $privateCreditFund->other_expenses ?? 'N/A' }} + {{ $privateCreditFund->other_expenses ?? '--' }}Return on investment
- {{ $privateCreditFund->return_on_investment ?? 'N/A' }} + {{ $privateCreditFund->return_on_investment ?? '--' }}Focused Sectors (Industries in which they are investing)
- {{ $privateCreditFund->focused_sectors_industries ?? 'N/A' }} + {{ $privateCreditFund->focused_sectors_industries ?? '--' }}Geographic Focus
- {{ $privateCreditFund->geographic_focus ?? 'N/A' }} + {{ $privateCreditFund->geographic_focus ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $privateCreditFund->regions_covered ?? 'N/A' }} + {{ $privateCreditFund->regions_covered ?? '--' }}Registration Number
- {{ $privateEquityFund->registration_number ?? 'N/A' }} + {{ $privateEquityFund->registration_number ?? '--' }}Fund category
- {{ $privateEquityFund->fund_category ?? 'N/A' }} + {{ $privateEquityFund->fund_category ?? '--' }}Fund structure
- {{ $privateEquityFund->fund_structure ?? 'N/A' }} + {{ $privateEquityFund->fund_structure ?? '--' }}Fund strategy
-Registration Number
- {{ $privateEquityFund->registration_number ?? 'N/A' }} + {{ $privateEquityFund->registration_number ?? '--' }}Fund category
- {{ $privateEquityFund->fund_category ?? 'N/A' }} + {{ $privateEquityFund->fund_category ?? '--' }}Fund structure
- {{ $privateEquityFund->fund_structure ?? 'N/A' }} + {{ $privateEquityFund->fund_structure ?? '--' }}Description
-Fund domicile
- {{ $privateEquityFund->fund_domicile ?? 'N/A' }} + {{ $privateEquityFund->fund_domicile ?? '--' }}Fund manager name
- {{ $privateEquityFund->fund_manager_name ?? 'N/A' }} + {{ $privateEquityFund->fund_manager_name ?? '--' }}Website of the fund
- {{-- {{ $privateEquityFund->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $privateEquityFund->website_of_the_fund ?? '--' }} --}} @if($privateEquityFund->website_of_the_fund) {{$privateEquityFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $privateEquityFund->fund_manager_experience ?? 'N/A' }} + {{ $privateEquityFund->fund_manager_experience ?? '--' }}Sponsor
- {{ $privateEquityFund->sponsor ?? 'N/A' }} + {{ $privateEquityFund->sponsor ?? '--' }}Manager
- {{ $privateEquityFund->manager ?? 'N/A' }} + {{ $privateEquityFund->manager ?? '--' }}Trustee
- {{ $privateEquityFund->trustee ?? 'N/A' }} + {{ $privateEquityFund->trustee ?? '--' }}Auditor
- {{ $privateEquityFund->auditor ?? 'N/A' }} + {{ $privateEquityFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $privateEquityFund->valuer_tax_advisor ?? 'N/A' }} + {{ $privateEquityFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $privateEquityFund->credit_rating ?? 'N/A' }} + {{ $privateEquityFund->credit_rating ?? '--' }}Open date
- {{ $privateEquityFund->open_date ?? 'N/A' }} + {{ $privateEquityFund->open_date ?? '--' }}1st close date
- {{ $privateEquityFund->first_close_date ?? 'N/A' }} + {{ $privateEquityFund->first_close_date ?? '--' }}Final close date
- {{ $privateEquityFund->final_close_date ?? 'N/A' }} + {{ $privateEquityFund->final_close_date ?? '--' }}Tenure from final close
- {{ $privateEquityFund->tenure_from_final_date ?? 'N/A' }} + {{ $privateEquityFund->tenure_from_final_date ?? '--' }}Commitment period
- {{ $privateEquityFund->commitment_period ?? 'N/A' }} + {{ $privateEquityFund->commitment_period ?? '--' }}Native currency
- {{ $privateEquityFund->native_currency ?? 'N/A' }} + {{ $privateEquityFund->native_currency ?? '--' }}Target IRR
- {{ $privateEquityFund->target_irr ?? 'N/A' }} + {{ $privateEquityFund->target_irr ?? '--' }}Initial drawdown
- {{ $privateEquityFund->intial_drawdown ?? 'N/A' }} + {{ $privateEquityFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $privateEquityFund->investment_manager_contribution ?? 'N/A' }} + {{ $privateEquityFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $privateEquityFund->minimum_capital_commitment ?? 'N/A' }} + {{ $privateEquityFund->minimum_capital_commitment ?? '--' }}Target corpus
- {{ $privateEquityFund->target_corpus ?? 'N/A' }} + {{ $privateEquityFund->target_corpus ?? '--' }}Accepting Overseas investment
- {{ $privateEquityFund->accepting_overseas_investment ?? 'N/A' }} + {{ $privateEquityFund->accepting_overseas_investment ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $privateEquityFund->management_fees_and_carry ?? 'N/A' }} + {{ $privateEquityFund->management_fees_and_carry ?? '--' }}Minimum Investment
- {{ $privateEquityFund->minimum_investment ?? 'N/A' }} + {{ $privateEquityFund->minimum_investment ?? '--' }}Hurdle rate
- {{ $privateEquityFund->hurdle_rate ?? 'N/A' }} + {{ $privateEquityFund->hurdle_rate ?? '--' }}Other expenses
- {{ $privateEquityFund->other_expenses ?? 'N/A' }} + {{ $privateEquityFund->other_expenses ?? '--' }}Company
- {{ $privateEquityFund->company->company_name ?? 'N/A' }} + {{ $privateEquityFund->company->company_name ?? '--' }}ISIN Code
- {{ $product->isin_code ?? 'N/A' }} + {{ $product->isin_code ?? '--' }}Focused Real Estate Sectors
- {{ $product->focused_real_estate_sectors ?? 'N/A' }} + {{ $product->focused_real_estate_sectors ?? '--' }}Rera Complied Property
- {{ $product->rera_complied_property ?? 'N/A' }} + {{ $product->rera_complied_property ?? '--' }}Return On Investment
- {{ $product->return_on_investment ?? 'N/A' }} + {{ $product->return_on_investment ?? '--' }}Valuation Per Sector
- {{ $product->valuation_per_sector ?? 'N/A' }} + {{ $product->valuation_per_sector ?? '--' }}Focused Funds
- {{ $product->focused_funds ?? 'N/A' }} + {{ $product->focused_funds ?? '--' }}Trading Strategy
- {{ $product->trading_strategy ?? 'N/A' }} + {{ $product->trading_strategy ?? '--' }}Trading Strategy Used
- {{ $product->trading_strategy_used ?? 'N/A' }} + {{ $product->trading_strategy_used ?? '--' }}Involved In Short Selling
- {{ $product->involved_in_short_selling ?? 'N/A' }} + {{ $product->involved_in_short_selling ?? '--' }}Focused Sectors (Industries in which they are investing)
- {{ $privateEquityFund->focused_sectors_industries ?? 'N/A' }} + {{ $privateEquityFund->focused_sectors_industries ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $privateEquityFund->regions_covered ?? 'N/A' }} + {{ $privateEquityFund->regions_covered ?? '--' }}Registration Number
- {{ $pipe->registration_number ?? 'N/A' }} + {{ $pipe->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $pipe->fund_category ?? 'N/A' }} + {{ $pipe->fund_category ?? '--' }}Fund structure
- {{ $pipe->fund_structure ?? 'N/A' }} + {{ $pipe->fund_structure ?? '--' }}Fund strategy
-Description
- {{ $product->description ?? 'N/A' }} + {{ $product->description ?? '--' }}Fund category (I/II/II)
- {{ $pipe->fund_category ?? 'N/A' }} + {{ $pipe->fund_category ?? '--' }}Fund structure
- {{ $pipe->fund_structure ?? 'N/A' }} + {{ $pipe->fund_structure ?? '--' }}Fund strategy
-Fund domicile
- {{ $pipe->fund_domicile ?? 'N/A' }} + {{ $pipe->fund_domicile ?? '--' }}Fund manager name
- {{ $pipe->fund_manager_name ?? 'N/A' }} + {{ $pipe->fund_manager_name ?? '--' }}Website of the fund
- {{-- {{ $pipe->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $pipe->website_of_the_fund ?? '--' }} --}} @if($pipe->website_of_the_fund) {{$pipe->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $pipe->fund_manager_experience ?? 'N/A' }} + {{ $pipe->fund_manager_experience ?? '--' }}Sponsor
- {{ $pipe->sponsor ?? 'N/A' }} + {{ $pipe->sponsor ?? '--' }}Manager
- {{ $pipe->manager ?? 'N/A' }} + {{ $pipe->manager ?? '--' }}Trustee
- {{ $pipe->trustee ?? 'N/A' }} + {{ $pipe->trustee ?? '--' }}Auditor
- {{ $pipe->auditor ?? 'N/A' }} + {{ $pipe->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $pipe->valuer_tax_advisor ?? 'N/A' }} + {{ $pipe->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $pipe->credit_rating ?? 'N/A' }} + {{ $pipe->credit_rating ?? '--' }}Open date
- {{ $pipe->open_date ?? 'N/A' }} + {{ $pipe->open_date ?? '--' }}1st close date
- {{ $pipe->first_close_date ?? 'N/A' }} + {{ $pipe->first_close_date ?? '--' }}Final close date
- {{ $pipe->final_close_date ?? 'N/A' }} + {{ $pipe->final_close_date ?? '--' }}Tenure from final close
- {{ $pipe->tenure_from_final_date ?? 'N/A' }} + {{ $pipe->tenure_from_final_date ?? '--' }}Commitment period
- {{ $pipe->commitment_period ?? 'N/A' }} + {{ $pipe->commitment_period ?? '--' }}Native currency
- {{ $pipe->native_currency ?? 'N/A' }} + {{ $pipe->native_currency ?? '--' }}Minimum Investment
@@ -268,7 +268,7 @@Initial drawdown
- {{ $pipe->intial_drawdown ?? 'N/A' }} + {{ $pipe->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $pipe->investment_manager_contribution ?? 'N/A' }} + {{ $pipe->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $pipe->minimum_capital_commitment ?? 'N/A' }} + {{ $pipe->minimum_capital_commitment ?? '--' }}Focused real estate sectors
- {{ $pipe->focused_real_estate_sectors ?? 'N/A' }} + {{ $pipe->focused_real_estate_sectors ?? '--' }}Target corpus
- {{ $pipe->target_corpus ?? 'N/A' }} + {{ $pipe->target_corpus ?? '--' }}Accepting Overseas investment?
- {{ $pipe->accepting_overseas_investment ?? 'N/A' }} + {{ $pipe->accepting_overseas_investment ?? '--' }}Valuation per Security
- {{ $productData->valuation_per_security_nav ?? 'N/A' }} + {{ $productData->valuation_per_security_nav ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $pipe->management_fees_and_carry ?? 'N/A' }} + {{ $pipe->management_fees_and_carry ?? '--' }}Company
- {{ $pipe->company->company_name ?? 'N/A' }} + {{ $pipe->company->company_name ?? '--' }}Target IRR
- {{ $pipe->target_irr ?? 'N/A' }} + {{ $pipe->target_irr ?? '--' }}Focused Real Estate Sectors Industries
- {{ $pipe->focused_sectors_industries ?? 'N/A' }} + {{ $pipe->focused_sectors_industries ?? '--' }}Rera Complied Property
- {{ $pipe->rera_complied_property ?? 'N/A' }} + {{ $pipe->rera_complied_property ?? '--' }}Hurdle rate
- {{ $pipe->hurdle_rate ?? 'N/A' }} + {{ $pipe->hurdle_rate ?? '--' }}Other expenses
- {{ $pipe->other_expenses ?? 'N/A' }} + {{ $pipe->other_expenses ?? '--' }}Return on investment
- {{ $productData->return_on_investment_irr_dpi_rvpi_tvpi ?? 'N/A' }} + {{ $productData->return_on_investment_irr_dpi_rvpi_tvpi ?? '--' }}Regions Covered
- {{ $productData->regions_covered ?? 'N/A' }} + {{ $productData->regions_covered ?? '--' }}ISIN Code
- {{ $productData->isin_code ?? 'N/A' }} + {{ $productData->isin_code ?? '--' }}Trading Strategy Used
- {{ $productData->trading_strategy_used ?? 'N/A' }} + {{ $productData->trading_strategy_used ?? '--' }}Registration Number
- {{ $realEstate->registration_number ?? 'N/A' }} + {{ $realEstate->registration_number ?? '--' }} @@ -184,7 +184,7 @@Fund category (I/II/II)
- {{ $realEstate->fund_category ?? 'N/A' }} + {{ $realEstate->fund_category ?? '--' }} @@ -192,7 +192,7 @@Fund structure
- {{ $realEstate->fund_structure ?? 'N/A' }} + {{ $realEstate->fund_structure ?? '--' }} @@ -202,7 +202,7 @@Fund strategy
-Focused real estate sectors
- {{ $productData->focused_real_estate_sectors ?? 'N/A' }} + {{ $productData->focused_real_estate_sectors ?? '--' }} @@ -239,7 +239,7 @@Valuer tax advisor
- {{ $realEstate->valuer_tax_advisor ?? 'N/A' }} + {{ $realEstate->valuer_tax_advisor ?? '--' }} --}} @@ -247,7 +247,7 @@Fund name
- {{ $realEstate->fund_name ?? 'N/A' }} + {{ $realEstate->fund_name ?? '--' }} --}} @@ -257,7 +257,7 @@Description
-Fund domicile
- {{ $realEstate->fund_domicile ?? 'N/A' }} + {{ $realEstate->fund_domicile ?? '--' }} @@ -283,7 +283,7 @@Fund manager name
- {{ $realEstate->fund_manager_name ?? 'N/A' }} + {{ $realEstate->fund_manager_name ?? '--' }} @@ -291,7 +291,7 @@Fund manager experience
- {{ $realEstate->fund_manager_experience ?? 'N/A' }} + {{ $realEstate->fund_manager_experience ?? '--' }} @@ -302,12 +302,12 @@Website of the fund
- {{-- {{ $realEstate->website_of_the_fund ?? 'N/A' }} --}} + {{-- {{ $realEstate->website_of_the_fund ?? '--' }} --}} @if($realEstate->website_of_the_fund) {{$realEstate->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endif @@ -317,7 +317,7 @@Sponsor
- {{ $realEstate->sponsor ?? 'N/A' }} + {{ $realEstate->sponsor ?? '--' }} @@ -329,7 +329,7 @@Manager
- {{ $realEstate->manager ?? 'N/A' }} + {{ $realEstate->manager ?? '--' }} @@ -337,7 +337,7 @@Trustee
- {{ $realEstate->trustee ?? 'N/A' }} + {{ $realEstate->trustee ?? '--' }} @@ -345,7 +345,7 @@Auditor
- {{ $realEstate->auditor ?? 'N/A' }} + {{ $realEstate->auditor ?? '--' }} @@ -367,7 +367,7 @@Credit rating (if any)
- {{ $productData->credit_rating ?? 'N/A' }} + {{ $productData->credit_rating ?? '--' }} @@ -375,7 +375,7 @@Open date
- {{ $realEstate->open_date ?? 'N/A' }} + {{ $realEstate->open_date ?? '--' }} @@ -383,7 +383,7 @@1st close date
- {{ $realEstate->first_close_date ?? 'N/A' }} + {{ $realEstate->first_close_date ?? '--' }} @@ -395,7 +395,7 @@Final close date
- {{ $realEstate->final_close_date ?? 'N/A' }} + {{ $realEstate->final_close_date ?? '--' }} @@ -403,7 +403,7 @@Tenure from final close
- {{ $realEstate->tenure_from_final_date ?? 'N/A' }} + {{ $realEstate->tenure_from_final_date ?? '--' }} @@ -411,7 +411,7 @@Commitment period
- {{ $realEstate->commitment_period ?? 'N/A' }} + {{ $realEstate->commitment_period ?? '--' }} @@ -431,7 +431,7 @@Native currency
- {{ $realEstate->native_currency ?? 'N/A' }} + {{ $realEstate->native_currency ?? '--' }} @@ -439,7 +439,7 @@Target IRR
- {{ $realEstate->target_irr ?? 'N/A' }} + {{ $realEstate->target_irr ?? '--' }} @@ -447,7 +447,7 @@Initial drawdown
- {{ $realEstate->intial_drawdown ?? 'N/A' }} + {{ $realEstate->intial_drawdown ?? '--' }} @@ -467,7 +467,7 @@Investment manager contribution
- {{ $realEstate->investment_manager_contribution ?? 'N/A' }} + {{ $realEstate->investment_manager_contribution ?? '--' }} @@ -475,28 +475,28 @@Minimal capital commitment
- {{ $realEstate->minimum_capital_commitment ?? 'N/A' }} + {{ $realEstate->minimum_capital_commitment ?? '--' }}Valuer / Tax Advisory
- {{ $realEstate->valuer_tax_advisor ?? 'N/A' }} + {{ $realEstate->valuer_tax_advisor ?? '--' }}Rera complied property
- {{ $realEstate->rera_complied_property ?? 'N/A' }} + {{ $realEstate->rera_complied_property ?? '--' }}Companies
- {{ $realEstate->companies->company_name ?? 'N/A' }} + {{ $realEstate->companies->company_name ?? '--' }}Target corpus
- {{ $realEstate->target_corpus ?? 'N/A' }} + {{ $realEstate->target_corpus ?? '--' }} @@ -524,7 +524,7 @@Accepting Overseas investment?
- {{ $productData->accepting_overseas_investment ?? 'N/A' }} + {{ $productData->accepting_overseas_investment ?? '--' }} @@ -554,7 +554,7 @@Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $realEstate->management_fees_and_carry ?? 'N/A' }} + {{ $realEstate->management_fees_and_carry ?? '--' }} @@ -574,7 +574,7 @@Hurdle rate
- {{ $realEstate->hurdle_rate ?? 'N/A' }} + {{ $realEstate->hurdle_rate ?? '--' }} @@ -582,14 +582,14 @@Other expenses
- {{ $realEstate->other_expenses ?? 'N/A' }} + {{ $realEstate->other_expenses ?? '--' }}ISIN code
- {{ $productData->isin_code ?? 'N/A' }} + {{ $productData->isin_code ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $realEstate->regions_covered ?? 'N/A' }} + {{ $realEstate->regions_covered ?? '--' }}Minimum Investment
- {{ $realEstate->minimum_investment ?? 'N/A' }} + {{ $realEstate->minimum_investment ?? '--' }}Focused Sector Industries
- {{ $productData->focused_sectors_industries ?? 'N/A' }} + {{ $productData->focused_sectors_industries ?? '--' }}Registration Number
- {{ $ventureCapitalFund->registration_number ?? "N/A" }} + {{ $ventureCapitalFund->registration_number ?? '--' }}Fund category (I/II/II)
- {{ $ventureCapitalFund->fund_category ?? "N/A" }} + {{ $ventureCapitalFund->fund_category ?? '--' }}Fund structure
- {{ $ventureCapitalFund->fund_structure ?? "N/A" }} + {{ $ventureCapitalFund->fund_structure ?? '--' }}Fund strategy
-Description
-Fund category (I/II/II)
- {{ $ventureCapitalFund->fund_category ?? "N/A" }} + {{ $ventureCapitalFund->fund_category ?? '--' }}Fund structure
- {{ $ventureCapitalFund->fund_structure ?? "N/A" }} + {{ $ventureCapitalFund->fund_structure ?? '--' }}Fund strategy
-Fund domicile
- {{ $ventureCapitalFund->fund_domicile ?? "N/A" }} + {{ $ventureCapitalFund->fund_domicile ?? '--' }}Fund manager name
- {{ $ventureCapitalFund->fund_manager_name ?? "N/A" }} + {{ $ventureCapitalFund->fund_manager_name ?? '--' }}Website of the fund
- {{-- {{ $ventureCapitalFund->website_of_the_fund ?? "N/A" }} --}} + {{-- {{ $ventureCapitalFund->website_of_the_fund ?? '--' }} --}} @if($ventureCapitalFund->website_of_the_fund) {{$ventureCapitalFund->website_of_the_fund}} @else - {{'N/A'}} + {{'--'}} @endifFund manager experience
- {{ $ventureCapitalFund->fund_manager_experience ?? "N/A" }} + {{ $ventureCapitalFund->fund_manager_experience ?? '--' }}Sponsor
- {{ $ventureCapitalFund->sponsor ?? "N/A" }} + {{ $ventureCapitalFund->sponsor ?? '--' }}Manager
- {{ $ventureCapitalFund->manager ?? "N/A" }} + {{ $ventureCapitalFund->manager ?? '--' }}Trustee
- {{ $ventureCapitalFund->trustee ?? "N/A" }} + {{ $ventureCapitalFund->trustee ?? '--' }}Auditor
- {{ $ventureCapitalFund->auditor ?? "N/A" }} + {{ $ventureCapitalFund->auditor ?? '--' }}Valuer / Tax Advisory
- {{ $ventureCapitalFund->valuer_tax_advisor ?? "N/A" }} + {{ $ventureCapitalFund->valuer_tax_advisor ?? '--' }}Credit rating (if any)
- {{ $ventureCapitalFund->credit_rating ?? "N/A" }} + {{ $ventureCapitalFund->credit_rating ?? '--' }}Open date
- {{ $ventureCapitalFund->open_date ?? "N/A" }} + {{ $ventureCapitalFund->open_date ?? '--' }}1st close date
- {{ $ventureCapitalFund->first_close_date ?? "N/A" }} + {{ $ventureCapitalFund->first_close_date ?? '--' }}Final close date
- {{ $ventureCapitalFund->final_close_date ?? "N/A" }} + {{ $ventureCapitalFund->final_close_date ?? '--' }}Tenure from final close
- {{ $ventureCapitalFund->tenure_from_final_date ?? "N/A" }} + {{ $ventureCapitalFund->tenure_from_final_date ?? '--' }}Commitment period
- {{ $ventureCapitalFund->commitment_period ?? "N/A" }} + {{ $ventureCapitalFund->commitment_period ?? '--' }}Native currency
- {{ $ventureCapitalFund->native_currency ?? "N/A" }} + {{ $ventureCapitalFund->native_currency ?? '--' }}Target IRR
- {{ $ventureCapitalFund->target_irr ?? "N/A" }} + {{ $ventureCapitalFund->target_irr ?? '--' }}Initial drawdown
- {{ $ventureCapitalFund->intial_drawdown ?? "N/A" }} + {{ $ventureCapitalFund->intial_drawdown ?? '--' }}Investment manager contribution
- {{ $ventureCapitalFund->investment_manager_contribution ?? "N/A" }} + {{ $ventureCapitalFund->investment_manager_contribution ?? '--' }}Minimal capital commitment
- {{ $ventureCapitalFund->minimum_capital_commitment ?? "N/A" }} + {{ $ventureCapitalFund->minimum_capital_commitment ?? '--' }}Target corpus
- {{ $ventureCapitalFund->target_corpus ?? "N/A" }} + {{ $ventureCapitalFund->target_corpus ?? '--' }}Accepting Overseas investment?
- {{ $ventureCapitalFund->accepting_overseas_investment ?? "N/A" }} + {{ $ventureCapitalFund->accepting_overseas_investment ?? '--' }}Management Fees and Carry - Set Up fee - Management Fee - Performace fee
- {{ $ventureCapitalFund->management_fees_and_carry ?? "N/A" }} + {{ $ventureCapitalFund->management_fees_and_carry ?? '--' }}Minimum Investment
- {{ $ventureCapitalFund->minimum_investment ?? "N/A" }} + {{ $ventureCapitalFund->minimum_investment ?? '--' }}Hurdle rate
- {{ $ventureCapitalFund->hurdle_rate ?? "N/A" }} + {{ $ventureCapitalFund->hurdle_rate ?? '--' }}Other expenses
- {{ $ventureCapitalFund->other_expenses ?? "N/A" }} + {{ $ventureCapitalFund->other_expenses ?? '--' }}Company
- {{ $ventureCapitalFund->company->company_name ?? "N/A" }} + {{ $ventureCapitalFund->company->company_name ?? '--' }}Focused Sectors (Industries in which they are investing)
- {{ $ventureCapitalFund->focused_sectors_industries ?? "N/A" }} + {{ $ventureCapitalFund->focused_sectors_industries ?? '--' }}Regions Covered (Geographical Locations covered by the fund)
- {{ $ventureCapitalFund->regions_covered ?? "N/A" }} + {{ $ventureCapitalFund->regions_covered ?? '--' }}ISIN Code
{{-- @dd($otherVCP[0]->isin_code); --}} - {{ $ventureCapitalFund->isin_code ?? "N/A" }} + {{ $ventureCapitalFund->isin_code ?? '--' }}Focused Real Estate Sectors
- {{ $ventureCapitalFund->focused_real_estate_sectors ?? "N/A" }} + {{ $ventureCapitalFund->focused_real_estate_sectors ?? '--' }}Rera Complied Property
- {{ $ventureCapitalFund->return_on_investment ?? "N/A" }} + {{ $ventureCapitalFund->return_on_investment ?? '--' }}Return On Investment
- {{ $ventureCapitalFund->rera_complied_property ?? "N/A" }} + {{ $ventureCapitalFund->rera_complied_property ?? '--' }}Valuation Per Sector
- {{ $ventureCapitalFund->valuation_per_sector ?? "N/A" }} + {{ $ventureCapitalFund->valuation_per_sector ?? '--' }}Focused Funds
- {{ $ventureCapitalFund->focused_funds ?? "N/A" }} + {{ $ventureCapitalFund->focused_funds ?? '--' }}Trading Strategy
- {{ $ventureCapitalFund->trading_strategy ?? "N/A" }} + {{ $ventureCapitalFund->trading_strategy ?? '--' }}Involved In Short Selling
- {{ $ventureCapitalFund->involved_in_short_selling ?? "N/A" }} + {{ $ventureCapitalFund->involved_in_short_selling ?? '--' }}Trading Strategy Used
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 819765c..3c66e0c 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 ?? 'N/A' }} + {{ $fractionalRealEstate->property_grade ?? '--' }}Asset type
- {{ $fractionalRealEstate->asset_type ?? 'N/A' }} + {{ $fractionalRealEstate->asset_type ?? '--' }}Deal size
- {{ IND_money_format((int)$fractionalRealEstate->deal_size_in_crore) ?? 'N/A' }} + {{ IND_money_format((int)$fractionalRealEstate->deal_size_in_crore) ?? '--' }}Property details
-Property grade
- {{ $fractionalRealEstate->property_grade ?? 'N/A' }} + {{ $fractionalRealEstate->property_grade ?? '--' }}Asset type
- {{ $fractionalRealEstate->asset_type ?? 'N/A' }} + {{ $fractionalRealEstate->asset_type ?? '--' }}Deal size
- {{ $fractionalRealEstate->deal_size_in_crore ?? 'N/A' }} + {{ $fractionalRealEstate->deal_size_in_crore ?? '--' }}Description
-Tenant
- {{ $fractionalRealEstate->tenant ?? 'N/A' }} + {{ $fractionalRealEstate->tenant ?? '--' }}Minimum investment
- {{ $fractionalRealEstate->minimum_investment ?? 'N/A' }} + {{ $fractionalRealEstate->minimum_investment ?? '--' }}Rental escalation
- {{ $fractionalRealEstate->rental_escalation ?? 'N/A' }} + {{ $fractionalRealEstate->rental_escalation ?? '--' }}Capital appreciation
- {{ $fractionalRealEstate->capital_appreciation ?? 'N/A' }} + {{ $fractionalRealEstate->capital_appreciation ?? '--' }}Coupon rate on CCD
- {{ $fractionalRealEstate->coupon_rate_on_ccd ?? 'N/A' }} + {{ $fractionalRealEstate->coupon_rate_on_ccd ?? '--' }}Expected IRR
- {{ $fractionalRealEstate->expected_irr.' %' ?? 'N/A' }} + {{ $fractionalRealEstate->expected_irr.' %' ?? '--' }}CAGR
- {{ $fractionalRealEstate->cagr.' %' ?? 'N/A' }} + {{ $fractionalRealEstate->cagr.' %' ?? '--' }}Minimum investor Lockin
- {{ $fractionalRealEstate->minimum_investment_lockin ?? 'N/A' }} + {{ $fractionalRealEstate->minimum_investment_lockin ?? '--' }}Tenant lease term
- {{ $fractionalRealEstate->tenant_lease_term ?? 'N/A' }} + {{ $fractionalRealEstate->tenant_lease_term ?? '--' }}Tenant lock in
- {{ $fractionalRealEstate->tenant_lock_in ?? 'N/A' }} + {{ $fractionalRealEstate->tenant_lock_in ?? '--' }}Tenant security deposit
- {{ $fractionalRealEstate->tenant_security_deposit ?? 'N/A' }} + {{ $fractionalRealEstate->tenant_security_deposit ?? '--' }}Hurdle rate
- {{ $fractionalRealEstate->hurdle_rate.' %' ?? 'N/A' }} + {{ $fractionalRealEstate->hurdle_rate.' %' ?? '--' }}Annual management fees
- {{ $fractionalRealEstate->annual_management_fee ?? 'N/A' }} + {{ $fractionalRealEstate->annual_management_fee ?? '--' }}Performance fees
- {{ $fractionalRealEstate->performance_fees.' %' ?? 'N/A' }} + {{ $fractionalRealEstate->performance_fees.' %' ?? '--' }}Issuer
- {{ $hedgeFund->issuer ?? 'N/A' }} + {{ $hedgeFund->issuer ?? '--' }}Fund Name
- {{ $hedgeFund->fund_name ?? 'N/A' }} + {{ $hedgeFund->fund_name ?? '--' }}Fund Type
- {{ $hedgeFund->fund_type ?? 'N/A' }} + {{ $hedgeFund->fund_type ?? '--' }}About Issuer
- {{ $hedgeFund->about_issuer ?? 'N/A' }} + {{ $hedgeFund->about_issuer ?? '--' }}Sharpe Ratio
- {{ $hedgeFund->sharpe_ratio ?? 'N/A' }} + {{ $hedgeFund->sharpe_ratio ?? '--' }}Annualized Volatility
- {{ $hedgeFund->annualized_volatility ?? 'N/A' }} + {{ $hedgeFund->annualized_volatility ?? '--' }}Max Drawdown
- {{ $hedgeFund->max_dropdown ?? 'N/A' }} + {{ $hedgeFund->max_dropdown ?? '--' }}ISIN
- {{ $hedgeFund->isin ?? 'N/A' }} + {{ $hedgeFund->isin ?? '--' }}Inception Date
- {{ $hedgeFund->inception_date ?? 'N/A' }} + {{ $hedgeFund->inception_date ?? '--' }}Fund AUM
- {{ $hedgeFund->fund_aum ?? 'N/A' }} + {{ $hedgeFund->fund_aum ?? '--' }}Date As On
- {{ $hedgeFund->date_as_on ?? 'N/A' }} + {{ $hedgeFund->date_as_on ?? '--' }}Description
- {{ $hedgeFund->fund_description ?? 'N/A' }} + {{ $hedgeFund->fund_description ?? '--' }}Expense Ratio
- {{ $hedgeFund->expense_ratio ?? 'N/A' }} + {{ $hedgeFund->expense_ratio ?? '--' }}NAV Per Unit
- {{ $hedgeFund->nav_per_unit ?? 'N/A' }} + {{ $hedgeFund->nav_per_unit ?? '--' }}Minimum Investment
- {{ $hedgeFund->minimum_investment ?? 'N/A' }} + {{ $hedgeFund->minimum_investment ?? '--' }}YTD
- {{ $hedgeFund->ytd ?? 'N/A' }} + {{ $hedgeFund->ytd ?? '--' }}1 Year Return
- {{ $hedgeFund->year1_return.' %' ?? 'N/A' }} + {{ $hedgeFund->year1_return.' %' ?? '--' }}3 Year Return
- {{ $hedgeFund->year3_return.' %' ?? 'N/A' }} + {{ $hedgeFund->year3_return.' %' ?? '--' }}Property Location
- {{ $realEstate->property_location ?? 'N/A' }} + {{ $realEstate->property_location ?? '--' }}Project Type
- {{ $realEstate->project_type ?? 'N/A' }} + {{ $realEstate->project_type ?? '--' }}Current Status
- {{ $realEstate->current_status ?? 'N/A' }} + {{ $realEstate->current_status ?? '--' }}Property Location
- {{ $realEstate->property_location ?? 'N/A' }} + {{ $realEstate->property_location ?? '--' }}Project Type
- {{ $realEstate->project_type ?? 'N/A' }} + {{ $realEstate->project_type ?? '--' }}Description
- {{ $productData->description ?? 'N/A' }} + {{ $productData->description ?? '--' }}Price Per Sq Ft
- {{ $realEstate->price_per_sq_ft ?? 'N/A' }} + {{ $realEstate->price_per_sq_ft ?? '--' }}Booking Amount
- {{ $realEstate->booking_amount ?? 'N/A' }} + {{ $realEstate->booking_amount ?? '--' }}Price Range
- {{ $realEstate->price_range ?? 'N/A' }} + {{ $realEstate->price_range ?? '--' }}Total Price
- {{ $realEstate->total_price ?? 'N/A' }} + {{ $realEstate->total_price ?? '--' }}Transaction Type
- {{ $realEstate->transaction_type ?? 'N/A' }} + {{ $realEstate->transaction_type ?? '--' }}Project Code/Rera Id
- {{ $realEstate->project_code_or_rera_id ?? 'N/A' }} + {{ $realEstate->project_code_or_rera_id ?? '--' }}Area in sq ft
- {{ $realEstate->area_in_sq_ft ?? 'N/A' }} + {{ $realEstate->area_in_sq_ft ?? '--' }}Construction Status
- {{ $realEstate->construction_status ?? 'N/A' }} + {{ $realEstate->construction_status ?? '--' }}Launch Date
- {{ $realEstate->launch_date ?? 'N/A' }} + {{ $realEstate->launch_date ?? '--' }}Geographic Focus
- {{ $realEstate->geographic_focus ?? 'N/A' }} + {{ $realEstate->geographic_focus ?? '--' }}Built Up Area
- {{ $realEstate->built_up_area ?? 'N/A' }} + {{ $realEstate->built_up_area ?? '--' }}Carpet area
- {{ $realEstate->carpet_area ?? 'N/A' }} + {{ $realEstate->carpet_area ?? '--' }}No. Of Bedrooms
- {{ $realEstate->no_of_bedrooms ?? 'N/A' }} + {{ $realEstate->no_of_bedrooms ?? '--' }}No. Of Restrooms
- {{ $realEstate->no_of_restrooms ?? 'N/A' }} + {{ $realEstate->no_of_restrooms ?? '--' }}No. Of Floors
- {{ $realEstate->no_of_floors ?? 'N/A' }} + {{ $realEstate->no_of_floors ?? '--' }}Slug
- {{ $realEstate->slug ?? 'N/A' }} + {{ $realEstate->slug ?? '--' }}Total Towers
- {{ $realEstate->total_towers ?? 'N/A' }} + {{ $realEstate->total_towers ?? '--' }}Builder Details
- {{ $realEstate->builder_details ?? 'N/A' }} + {{ $realEstate->builder_details ?? '--' }}Landmarks
- {{ $realEstate->landmarks ?? 'N/A' }} + {{ $realEstate->landmarks ?? '--' }}Completed In
- {{ $realEstate->completed_in ?? 'N/A' }} + {{ $realEstate->completed_in ?? '--' }}Total Units
- {{ $realEstate->total_units ?? 'N/A' }} + {{ $realEstate->total_units ?? '--' }}Unit Type
- {{ $realEstate->unit_type ?? 'N/A' }} + {{ $realEstate->unit_type ?? '--' }}Electricity Status
- {{ $realEstate->electricity_status ?? 'N/A' }} + {{ $realEstate->electricity_status ?? '--' }}Fire Satefy Measures
- {{ $realEstate->fire_safety_measures ?? 'N/A' }} + {{ $realEstate->fire_safety_measures ?? '--' }}Water Facility
- {{ $realEstate->water_facility ?? 'N/A' }} + {{ $realEstate->water_facility ?? '--' }}Furnished Status
- {{ $realEstate->furnished_status ?? 'N/A' }} + {{ $realEstate->furnished_status ?? '--' }}Commencement Certificate
- {{ $realEstate->commencement_certificate ?? 'N/A' }} + {{ $realEstate->commencement_certificate ?? '--' }}Occupancy Certificate
- {{ $realEstate->occupancy_certificate ?? 'N/A' }} + {{ $realEstate->occupancy_certificate ?? '--' }}Price Neogtiable
- {{ $realEstate->price_negotiable ?? 'N/A' }} + {{ $realEstate->price_negotiable ?? '--' }}Maintenance Fees
- {{ $realEstate->maintenance_fees ?? 'N/A' }} + {{ $realEstate->maintenance_fees ?? '--' }}Nearest Railway Metro Station
- {{ $realEstate->nearest_railway_metro_station ?? 'N/A' }} + {{ $realEstate->nearest_railway_metro_station ?? '--' }}Amenities
- {{ $realEstate->amenities ?? 'N/A' }} + {{ $realEstate->amenities ?? '--' }}Car Parking
- {{ $realEstate->car_parking ?? 'N/A' }} + {{ $realEstate->car_parking ?? '--' }}Remarks
- {{ $realEstate->remarks ?? 'N/A' }} + {{ $realEstate->remarks ?? '--' }}Pre-Leased
- {{ $realEstate->pre_leased ?? 'N/A' }} + {{ $realEstate->pre_leased ?? '--' }}Tenant Details
- {{ $realEstate->tenant_details ?? 'N/A' }} + {{ $realEstate->tenant_details ?? '--' }}Facilities/Features
- {{ $realEstate->facilities_features ?? 'N/A' }} + {{ $realEstate->facilities_features ?? '--' }}Minimum Investment
- {{ $realEstate->total_price ?? 'N/A' }} + {{ $realEstate->total_price ?? '--' }}Construction Age
- {{ $realEstate->construction_age ?? 'N/A' }} + {{ $realEstate->construction_age ?? '--' }}Location
- {{ $realEstate->location ?? 'N/A' }} + {{ $realEstate->location ?? '--' }}Country
- {{ $realEstate->country ?? 'N/A' }} + {{ $realEstate->country ?? '--' }}Elevators
- {{ $realEstate->elevators ?? 'N/A' }} + {{ $realEstate->elevators ?? '--' }}Issuer
- {{ $privateEquityFund->issuer ?? 'N/A' }} + {{ $privateEquityFund->issuer ?? '--' }}Fund Name
- {{ $privateEquityFund->fund_name ?? 'N/A' }} + {{ $privateEquityFund->fund_name ?? '--' }}Fund Type
- {{ $privateEquityFund->fund_type ?? 'N/A' }} + {{ $privateEquityFund->fund_type ?? '--' }}About Issuer
- {{ $privateEquityFund->about_issuer ?? 'N/A' }} + {{ $privateEquityFund->about_issuer ?? '--' }}Sharpe Ratio
- {{ $privateEquityFund->sharpe_ratio ?? 'N/A' }} + {{ $privateEquityFund->sharpe_ratio ?? '--' }}Annualized Volatility
- {{ $privateEquityFund->annualized_volatility ?? 'N/A' }} + {{ $privateEquityFund->annualized_volatility ?? '--' }}Max Drawdown
- {{ $privateEquityFund->max_dropdown ?? 'N/A' }} + {{ $privateEquityFund->max_dropdown ?? '--' }}ISIN
- {{ $privateEquityFund->isin ?? 'N/A' }} + {{ $privateEquityFund->isin ?? '--' }}Inception Date
- {{ $privateEquityFund->inception_date ?? 'N/A' }} + {{ $privateEquityFund->inception_date ?? '--' }}Fund AUM
- {{ $privateEquityFund->fund_aum ?? 'N/A' }} + {{ $privateEquityFund->fund_aum ?? '--' }}Date As ON
- {{ $privateEquityFund->date_as_on ?? 'N/A' }} + {{ $privateEquityFund->date_as_on ?? '--' }}Description
- {{ $privateEquityFund->fund_description ?? 'N/A' }} + {{ $privateEquityFund->fund_description ?? '--' }}Expense Ratio
- {{ $privateEquityFund->expense_ratio ?? 'N/A' }} + {{ $privateEquityFund->expense_ratio ?? '--' }}NAV Per Unit
- {{ $privateEquityFund->nav_per_unit ?? 'N/A' }} + {{ $privateEquityFund->nav_per_unit ?? '--' }}Minimum Investment
- {{ $privateEquityFund->minimum_investment ?? 'N/A' }} + {{ $privateEquityFund->minimum_investment ?? '--' }}YTD
- {{ $privateEquityFund->ytd ?? 'N/A' }} + {{ $privateEquityFund->ytd ?? '--' }}1 Year Return
- {{ $privateEquityFund->year1_return.' %' ?? 'N/A' }} + {{ $privateEquityFund->year1_return.' %' ?? '--' }}3 Year Return
- {{ $privateEquityFund->year3_return.' %' ?? 'N/A' }} + {{ $privateEquityFund->year3_return.' %' ?? '--' }}Issuer
- {{ $ventureCapitalFund->issuer ?? 'N/A' }} + {{ $ventureCapitalFund->issuer ?? '--' }}Fund Name
- {{ $ventureCapitalFund->fund_name ?? 'N/A' }} + {{ $ventureCapitalFund->fund_name ?? '--' }}Fund Type
- {{ $ventureCapitalFund->fund_type ?? 'N/A' }} + {{ $ventureCapitalFund->fund_type ?? '--' }}About Issuer
- {{ $ventureCapitalFund->about_issuer ?? 'N/A' }} + {{ $ventureCapitalFund->about_issuer ?? '--' }}Sharpe Ratio
- {{ $ventureCapitalFund->sharpe_ratio ?? 'N/A' }} + {{ $ventureCapitalFund->sharpe_ratio ?? '--' }}Annualized Volatility
- {{ $ventureCapitalFund->annualized_volatility ?? 'N/A' }} + {{ $ventureCapitalFund->annualized_volatility ?? '--' }}Max Drawdown
- {{ $ventureCapitalFund->max_dropdown ?? 'N/A' }} + {{ $ventureCapitalFund->max_dropdown ?? '--' }}ISIN
- {{ $ventureCapitalFund->isin ?? 'N/A' }} + {{ $ventureCapitalFund->isin ?? '--' }}Inception Date
- {{ $ventureCapitalFund->inception_date ?? 'N/A' }} + {{ $ventureCapitalFund->inception_date ?? '--' }}Fund AUM
- {{ $ventureCapitalFund->fund_aum ?? 'N/A' }} + {{ $ventureCapitalFund->fund_aum ?? '--' }}Date As ON
- {{ $ventureCapitalFund->date_as_on ?? 'N/A' }} + {{ $ventureCapitalFund->date_as_on ?? '--' }}Description
- {{ $productData->funds->fund_description ?? 'N/A' }} + {{ $productData->funds->fund_description ?? '--' }}Expense Ratio
- {{ $ventureCapitalFund->expense_ratio ?? 'N/A' }} + {{ $ventureCapitalFund->expense_ratio ?? '--' }}NAV Per Unit
- {{ $ventureCapitalFund->nav_per_unit ?? 'N/A' }} + {{ $ventureCapitalFund->nav_per_unit ?? '--' }}Minimum Investment
- {{ $ventureCapitalFund->minimum_investment ?? 'N/A' }} + {{ $ventureCapitalFund->minimum_investment ?? '--' }}YTD
- {{ $ventureCapitalFund->ytd ?? 'N/A' }} + {{ $ventureCapitalFund->ytd ?? '--' }}1 Year Return
- {{ $ventureCapitalFund->year1_return.' %' ?? 'N/A' }} + {{ $ventureCapitalFund->year1_return.' %' ?? '--' }}3 Year Return
- {{ $ventureCapitalFund->year3_return.' %' ?? 'N/A' }} + {{ $ventureCapitalFund->year3_return.' %' ?? '--' }}