diff --git a/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php b/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php index abdf8c8..e30705d 100644 --- a/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php +++ b/app/Http/Controllers/Admin/ManageFreeUInvestments/FractionalRealEstateController.php @@ -210,7 +210,7 @@ class FractionalRealEstateController extends Controller $fractionalRealEstate->save(); } } - $type = Product::where('id', $fre->products_id)->update(['type' => $request->type]); + $type = Product::where('id', $fre->products_id)->update(['type' => $request->type,'description'=> $request->description]); return response()->json(['status' => 200, 'message' => 'Fractional Real Estate Details Updated Successfully']); diff --git a/app/Imports/FundImport.php b/app/Imports/FundImport.php index 38fa235..08b435e 100644 --- a/app/Imports/FundImport.php +++ b/app/Imports/FundImport.php @@ -61,7 +61,8 @@ class FundImport implements ToCollection, WithHeadingRow 'categories_id' => $this->category_id, 'total_views' => 0, 'status' => 0, - 'created_by' => auth()->user()->id + 'created_by' => auth()->user()->id, + 'description'=> $row['description'] ?? null ]); if ($this->category_id == Category::GlobalMutualFundId) { diff --git a/app/Imports/RealEstateImport.php b/app/Imports/RealEstateImport.php index 679b31c..cb62028 100644 --- a/app/Imports/RealEstateImport.php +++ b/app/Imports/RealEstateImport.php @@ -60,7 +60,8 @@ class RealEstateImport implements ToCollection, WithHeadingRow 'categories_id' => $this->category_id, 'total_views' => 0, 'status' => 0, - 'created_by' => auth()->user()->id + 'created_by' => auth()->user()->id, + 'description'=> $row['description'] ?? null ]); $count = RealEstate::where('property_name',$row['property_name'])->count(); RealEstate::create([ diff --git a/app/Imports/StockFundsRealEstateExchangeImport.php b/app/Imports/StockFundsRealEstateExchangeImport.php index 7f66bae..7bbf50b 100644 --- a/app/Imports/StockFundsRealEstateExchangeImport.php +++ b/app/Imports/StockFundsRealEstateExchangeImport.php @@ -50,7 +50,8 @@ class StockFundsRealEstateExchangeImport implements ToCollection, WithHeadingRow 'categories_id' => $this->category_id, 'total_views' => 0, 'status' => 0, - 'created_by' => auth()->user()->id + 'created_by' => auth()->user()->id, + 'description'=> $row['description'] ?? null ]); $count = StockFundsRealEstateExchange::where('name',$row['stock_name'])->count(); // $count = StockFundsRealEstateExchange::where(function($query) use($row){ diff --git a/public/excel-template/AngelFundsTemplate.xlsx b/public/excel-template/AngelFundsTemplate.xlsx index f01c505..0d9eed1 100644 Binary files a/public/excel-template/AngelFundsTemplate.xlsx and b/public/excel-template/AngelFundsTemplate.xlsx differ diff --git a/public/excel-template/ExchangeTradedFundsTemplate.xlsx b/public/excel-template/ExchangeTradedFundsTemplate.xlsx index 46bbe9a..df90bcc 100644 Binary files a/public/excel-template/ExchangeTradedFundsTemplate.xlsx and b/public/excel-template/ExchangeTradedFundsTemplate.xlsx differ diff --git a/public/excel-template/FundForDistressedAssetTemplate.xlsx b/public/excel-template/FundForDistressedAssetTemplate.xlsx index b2cdc7d..1f63978 100644 Binary files a/public/excel-template/FundForDistressedAssetTemplate.xlsx and b/public/excel-template/FundForDistressedAssetTemplate.xlsx differ diff --git a/public/excel-template/HedgeFundsTemplate.xlsx b/public/excel-template/HedgeFundsTemplate.xlsx index 8981c07..03cb637 100644 Binary files a/public/excel-template/HedgeFundsTemplate.xlsx and b/public/excel-template/HedgeFundsTemplate.xlsx differ diff --git a/public/excel-template/IndianCommercialRealEstateTemplate.xlsx b/public/excel-template/IndianCommercialRealEstateTemplate.xlsx index 5f0562d..3f9bb6c 100644 Binary files a/public/excel-template/IndianCommercialRealEstateTemplate.xlsx and b/public/excel-template/IndianCommercialRealEstateTemplate.xlsx differ diff --git a/public/excel-template/IndianIndustrialRealEstateTemplate.xlsx b/public/excel-template/IndianIndustrialRealEstateTemplate.xlsx index 4fc397e..f67a26b 100644 Binary files a/public/excel-template/IndianIndustrialRealEstateTemplate.xlsx and b/public/excel-template/IndianIndustrialRealEstateTemplate.xlsx differ diff --git a/public/excel-template/IndianResidentialRealEstateTemplate.xlsx b/public/excel-template/IndianResidentialRealEstateTemplate.xlsx index 51bbc74..7c712f8 100644 Binary files a/public/excel-template/IndianResidentialRealEstateTemplate.xlsx and b/public/excel-template/IndianResidentialRealEstateTemplate.xlsx differ diff --git a/public/excel-template/InfrastructureFundsTemplate.xlsx b/public/excel-template/InfrastructureFundsTemplate.xlsx index 7c039c3..01cab4f 100644 Binary files a/public/excel-template/InfrastructureFundsTemplate.xlsx and b/public/excel-template/InfrastructureFundsTemplate.xlsx differ diff --git a/public/excel-template/LongOnlyFundsTemplate.xlsx b/public/excel-template/LongOnlyFundsTemplate.xlsx index e96f568..258291f 100644 Binary files a/public/excel-template/LongOnlyFundsTemplate.xlsx and b/public/excel-template/LongOnlyFundsTemplate.xlsx differ diff --git a/public/excel-template/PrivateCreditTemplate.xlsx b/public/excel-template/PrivateCreditTemplate.xlsx index 4d4f8d7..5fafc35 100644 Binary files a/public/excel-template/PrivateCreditTemplate.xlsx and b/public/excel-template/PrivateCreditTemplate.xlsx differ diff --git a/public/excel-template/PrivateEquityFundsTemplate.xlsx b/public/excel-template/PrivateEquityFundsTemplate.xlsx index f3da208..165c484 100644 Binary files a/public/excel-template/PrivateEquityFundsTemplate.xlsx and b/public/excel-template/PrivateEquityFundsTemplate.xlsx differ diff --git a/public/excel-template/PrivateInvestmentInPublicEquityFundsTemplate.xlsx b/public/excel-template/PrivateInvestmentInPublicEquityFundsTemplate.xlsx index 6f1f4bf..7ec406d 100644 Binary files a/public/excel-template/PrivateInvestmentInPublicEquityFundsTemplate.xlsx and b/public/excel-template/PrivateInvestmentInPublicEquityFundsTemplate.xlsx differ diff --git a/public/excel-template/PrivateRealEstateFundsTemplate.xlsx b/public/excel-template/PrivateRealEstateFundsTemplate.xlsx index 5f77f78..d2f7dcb 100644 Binary files a/public/excel-template/PrivateRealEstateFundsTemplate.xlsx and b/public/excel-template/PrivateRealEstateFundsTemplate.xlsx differ diff --git a/public/excel-template/RealEstateInvestmentTrustsTemplate.xlsx b/public/excel-template/RealEstateInvestmentTrustsTemplate.xlsx index ff60aac..2c4a5da 100644 Binary files a/public/excel-template/RealEstateInvestmentTrustsTemplate.xlsx and b/public/excel-template/RealEstateInvestmentTrustsTemplate.xlsx differ diff --git a/public/excel-template/VentureCapitalFundsTemplate.xlsx b/public/excel-template/VentureCapitalFundsTemplate.xlsx index 732042a..02b49cf 100644 Binary files a/public/excel-template/VentureCapitalFundsTemplate.xlsx and b/public/excel-template/VentureCapitalFundsTemplate.xlsx differ diff --git a/public/excel-template/VentureDebtTemplate.xlsx b/public/excel-template/VentureDebtTemplate.xlsx index 6c940b3..f505900 100644 Binary files a/public/excel-template/VentureDebtTemplate.xlsx and b/public/excel-template/VentureDebtTemplate.xlsx differ 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 039b105..bd18281 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 @@ -420,7 +420,7 @@ - {{--
+
-
--}} +
diff --git a/resources/views/components/fractional-real-estate-product.blade.php b/resources/views/components/fractional-real-estate-product.blade.php index d0227a8..4c2d96b 100644 --- a/resources/views/components/fractional-real-estate-product.blade.php +++ b/resources/views/components/fractional-real-estate-product.blade.php @@ -33,7 +33,8 @@

Minimum Investment: {{ $freData->fractional_real_estate->minimum_investment }}

-

{{ $freData->fractional_real_estate->property_description }}

+ {{--

{{ $freData->fractional_real_estate->property_description }}

--}} +

{{ $freData->description }}

diff --git a/resources/views/components/fund-for-distressed-asset-product.blade.php b/resources/views/components/fund-for-distressed-asset-product.blade.php index de4a2db..eaa217e 100644 --- a/resources/views/components/fund-for-distressed-asset-product.blade.php +++ b/resources/views/components/fund-for-distressed-asset-product.blade.php @@ -34,7 +34,7 @@

Minimum Investment: {{$data->alternative_investment_fund->minimum_investment}}

-

{{$data->alternative_investment_fund->description}}

+

{{$data->description}}

diff --git a/resources/views/components/hedge-fund-product.blade.php b/resources/views/components/hedge-fund-product.blade.php index cec172d..7b54e90 100644 --- a/resources/views/components/hedge-fund-product.blade.php +++ b/resources/views/components/hedge-fund-product.blade.php @@ -40,7 +40,7 @@

Minimum Investment: {{ $data->alternative_investment_fund->minimum_investment }}

-

{{ $data->alternative_investment_fund->description }}

+

{{ $data->description }}

diff --git a/resources/views/components/infrastructure-fund-product.blade.php b/resources/views/components/infrastructure-fund-product.blade.php index 562db42..1893fd7 100644 --- a/resources/views/components/infrastructure-fund-product.blade.php +++ b/resources/views/components/infrastructure-fund-product.blade.php @@ -35,7 +35,7 @@

Minimum Investment: {{$data->alternative_investment_fund->minimum_investment}}

-

{{$data->alternative_investment_fund->description}}

+

{{$data->description}}

diff --git a/resources/views/components/long-only-equity-funds.blade.php b/resources/views/components/long-only-equity-funds.blade.php index 40ce7cf..cd599a4 100644 --- a/resources/views/components/long-only-equity-funds.blade.php +++ b/resources/views/components/long-only-equity-funds.blade.php @@ -42,7 +42,7 @@

Minimum Investment: {{ $data->alternative_investment_fund->minimum_investment }}

-

{{ $data->alternative_investment_fund->description }}

+

{{ $data->description }}

diff --git a/resources/views/components/private-equity-fund-product.blade.php b/resources/views/components/private-equity-fund-product.blade.php index c73b602..23062fb 100644 --- a/resources/views/components/private-equity-fund-product.blade.php +++ b/resources/views/components/private-equity-fund-product.blade.php @@ -40,7 +40,7 @@

Minimum Investment: {{ $data->alternative_investment_fund->minimum_investment }}

-

{{ $data->alternative_investment_fund->description }}

+

{{ $data->description }}

diff --git a/resources/views/components/venture-capital-fund-product.blade.php b/resources/views/components/venture-capital-fund-product.blade.php index 557fec3..ff98a3b 100644 --- a/resources/views/components/venture-capital-fund-product.blade.php +++ b/resources/views/components/venture-capital-fund-product.blade.php @@ -35,7 +35,7 @@

Minimum Investment: {{$data->alternative_investment_fund->minimum_investment}}

-

{{$data->alternative_investment_fund->description}}

+

{{$data->description}}