diff --git a/app/Http/Resources/InfrastructureFundResource.php b/app/Http/Resources/InfrastructureFundResource.php
index 58f2eae..9eaafff 100644
--- a/app/Http/Resources/InfrastructureFundResource.php
+++ b/app/Http/Resources/InfrastructureFundResource.php
@@ -72,6 +72,8 @@ class InfrastructureFundResource extends JsonResource
'valuation_per_security_nav' => $this->valuation_per_security_nav,
'trading_strategy_used' => $this->trading_strategy_used,
'involved_in_short_selling' => $this->involved_in_short_selling,
+ 'focused_real_estate_sectors' => $this->focused_real_estate_sectors,
+ 'rera_complied_property' => $this->rera_complied_property,
];
}
}
diff --git a/resources/views/Frontend/Pages/profile/market-list/alternative-investment-fund.blade.php b/resources/views/Frontend/Pages/profile/market-list/alternative-investment-fund.blade.php
index 6286cb6..a7b102d 100644
--- a/resources/views/Frontend/Pages/profile/market-list/alternative-investment-fund.blade.php
+++ b/resources/views/Frontend/Pages/profile/market-list/alternative-investment-fund.blade.php
@@ -201,19 +201,19 @@
if (value == 'Category I') {
$('#type_of_fund').html('');
$('#type_of_fund').html(
- ""
+ ""
);
}
if (value == 'Category II') {
$('#type_of_fund').html('');
$('#type_of_fund').html(
- ""
- );
+ ""
+ );
}
if (value == 'Category III') {
$('#type_of_fund').html('');
$('#type_of_fund').html(
- ""
+ ""
);
}
})