diff --git a/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php b/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php index 6932bd9..36375ff 100644 --- a/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php +++ b/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php @@ -500,7 +500,7 @@ class ManageFreeUInvestmentController extends Controller $count = Fund::where('issuer', $request->issuer)->count(); $fund = Fund::where('id', $request->fund_id)->update([ 'issuer' => $request->issuer, - 'slug' => $count < 2 ? Str::slug($request->issuer) : Str::slug($request->issuer).'-'.$count+1, + 'slug' => Str::slug($request->issuer).'-'.++$count, 'fund_name' => $request->fund_name, 'geographic_focus' => $request->geographic_focus, 'fund_type' => $request->fund_type, @@ -843,7 +843,7 @@ class ManageFreeUInvestmentController extends Controller $count = RealEstate::where('property_name',$request->property_name)->count(); $realEstate = RealEstate::where('id', $request->realEstates)->update([ 'property_name' => $request->property_name, - 'slug' => $count < 2 ? Str::slug($request->property_name) : Str::slug($request->property_name).'-'.$count+1, + 'slug' => Str::slug($request->property_name).'-'.++$count, 'platform_partner' => $request->companies_id, 'geographic_focus' => $request->geographic_focus, 'price_per_sq_ft' => $request->price_per_sq_ft, diff --git a/app/Http/Controllers/Admin/ManageFreeUInvestments/VentureCapitalFundController.php b/app/Http/Controllers/Admin/ManageFreeUInvestments/VentureCapitalFundController.php index 030d07f..b879ac3 100644 --- a/app/Http/Controllers/Admin/ManageFreeUInvestments/VentureCapitalFundController.php +++ b/app/Http/Controllers/Admin/ManageFreeUInvestments/VentureCapitalFundController.php @@ -135,7 +135,7 @@ class VentureCapitalFundController extends Controller $alternativeInvestmentFund = AlternativeInvestmentFund::where('id', $request->id)->update([ - 'slug' => $count < 2 ? Str::slug($request->fund_name) : Str::slug($request->fund_name).'-'.$count+1, + 'slug' => Str::slug($request->fund_name).'-'.++$count, 'fund_name' => $request->fund_name, 'geographic_focus' => $request->geographic_focus, 'companies_id' => $request->companies_id, diff --git a/app/Http/Controllers/Frontend/GlobalHedgeFundController.php b/app/Http/Controllers/Frontend/GlobalHedgeFundController.php index fece0f5..e23134a 100644 --- a/app/Http/Controllers/Frontend/GlobalHedgeFundController.php +++ b/app/Http/Controllers/Frontend/GlobalHedgeFundController.php @@ -34,7 +34,7 @@ class GlobalHedgeFundController extends Controller public function hedgeFundAllData($type = 'Open') { try { - return (new test(Product::has('funds')->with('funds','product_images')->where('type',$type)->funds()->globalHedgeFund()->get())) + return (new test(Product::has('funds')->with('funds.companies','product_images')->where('type',$type)->funds()->globalHedgeFund()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Http/Controllers/Frontend/GlobalMutualFundController.php b/app/Http/Controllers/Frontend/GlobalMutualFundController.php index c855518..6bbd365 100644 --- a/app/Http/Controllers/Frontend/GlobalMutualFundController.php +++ b/app/Http/Controllers/Frontend/GlobalMutualFundController.php @@ -42,7 +42,7 @@ class GlobalMutualFundController extends Controller public function fundData($slug) { try { - return (new GlobalFundResource(Fund::where('slug', $slug)->first())) + return (new GlobalFundResource(Fund::with('companies')->where('slug', $slug)->first())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Http/Controllers/Frontend/GlobalPrivateEquityFundController.php b/app/Http/Controllers/Frontend/GlobalPrivateEquityFundController.php index 8bc631d..b9613f7 100644 --- a/app/Http/Controllers/Frontend/GlobalPrivateEquityFundController.php +++ b/app/Http/Controllers/Frontend/GlobalPrivateEquityFundController.php @@ -47,7 +47,7 @@ class GlobalPrivateEquityFundController extends Controller public function privateEquityFundAllData($type = 'Open') { try { - return (new test(Product::has('funds')->with('funds','product_images')->funds()->globalPrivateEquityFund()->where('type', $type)->get())) + return (new test(Product::has('funds')->with('funds.companies','product_images')->funds()->globalPrivateEquityFund()->where('type', $type)->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Http/Controllers/Frontend/GlobalRealAssetController.php b/app/Http/Controllers/Frontend/GlobalRealAssetController.php index 68ba383..486e43e 100644 --- a/app/Http/Controllers/Frontend/GlobalRealAssetController.php +++ b/app/Http/Controllers/Frontend/GlobalRealAssetController.php @@ -57,7 +57,7 @@ class GlobalRealAssetController extends Controller public function globalIndustrialRealEstateAllData($type = 'Open') { try { - return (new test(Product::has('realEstate')->with('realEstate.photo')->globalIndustrialRealEstate()->where('type', $type)->active()->get())) + return (new test(Product::has('realEstate')->with('realEstate.photo','product_images')->globalIndustrialRealEstate()->where('type', $type)->active()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { @@ -68,7 +68,7 @@ class GlobalRealAssetController extends Controller public function globalResidentialRealEstateAllData($type = 'Open') { try { - return (new test(Product::has('realEstate')->with('realEstate.photo')->globalResidentialRealEstate()->where('type', $type)->active()->get())) + return (new test(Product::has('realEstate')->with('realEstate.photo','product_images')->globalResidentialRealEstate()->where('type', $type)->active()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { @@ -79,7 +79,7 @@ class GlobalRealAssetController extends Controller public function globalCommercialRealEstateAllData($type = 'Open') { try { - return (new test(Product::has('realEstate')->with('realEstate.photo')->globalCommercialRealEstate()->where('type', $type)->active()->get())) + return (new test(Product::has('realEstate')->with('realEstate.photo','product_images')->globalCommercialRealEstate()->where('type', $type)->active()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php b/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php index c4dc132..d257083 100644 --- a/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php +++ b/app/Http/Controllers/Frontend/GlobalVentureCapitalFund.php @@ -35,7 +35,7 @@ class GlobalVentureCapitalFund extends Controller public function ventureCapitalAllData($type = 'Open') { try { - return (new test(Product::has('funds')->with('funds','product_images')->where('type',$type)->funds()->globalVentureCapitalFund()->get())) + return (new test(Product::has('funds')->with('funds.companies','product_images')->where('type',$type)->funds()->globalVentureCapitalFund()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Http/Controllers/Frontend/IndianRealAssetController.php b/app/Http/Controllers/Frontend/IndianRealAssetController.php index 3c1b125..54d17d1 100644 --- a/app/Http/Controllers/Frontend/IndianRealAssetController.php +++ b/app/Http/Controllers/Frontend/IndianRealAssetController.php @@ -63,7 +63,7 @@ class IndianRealAssetController extends Controller public function indianIndustrialRealEstateAllData($type = 'Open') { try { - return (new test(Product::has('realEstate')->with('realEstate.photo')->indianIndustrialRealEstate()->where('type',$type)->active()->get())) + return (new test(Product::has('realEstate')->with('realEstate.photo','product_images')->indianIndustrialRealEstate()->where('type',$type)->active()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { @@ -74,7 +74,7 @@ class IndianRealAssetController extends Controller public function indianResidentialRealEstateAllData($type = 'Open') { try { - return (new test(Product::has('realEstate')->with('realEstate.photo')->indianResidentialRealEstate()->where('type',$type)->active()->get())) + return (new test(Product::has('realEstate')->with('realEstate.photo','product_images')->indianResidentialRealEstate()->where('type',$type)->active()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { @@ -85,7 +85,7 @@ class IndianRealAssetController extends Controller public function indianCommercialRealEstateAllData($type = 'Open') { try { - return (new test(Product::has('realEstate')->with('realEstate.photo')->indianCommercialRealEstate()->where('type',$type)->active()->get())) + return (new test(Product::has('realEstate')->with('realEstate.photo','product_images')->indianCommercialRealEstate()->where('type',$type)->active()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Http/Controllers/Frontend/MarketPlaceController.php b/app/Http/Controllers/Frontend/MarketPlaceController.php index 6ffd0e8..5290341 100644 --- a/app/Http/Controllers/Frontend/MarketPlaceController.php +++ b/app/Http/Controllers/Frontend/MarketPlaceController.php @@ -177,7 +177,7 @@ class MarketPlaceController extends Controller $ownProduct = $offering['own-product']; $logged_in = auth()->guard('users')->check() == true ? true : false; // dd($status); - // dd('offering',$offering['invested_data']); + // dd($offering); $investedData = $offering['invested_data']; @@ -207,7 +207,7 @@ class MarketPlaceController extends Controller if (MarketplaceFractionalRealEstateSeller::where('slug', $slug)->exists()) { // $bidFor .= 'fractional-real-estate'; $offering['type'] = 'fractional-real-estate'; - $marketFRE = MarketplaceFractionalRealEstateSeller::where('slug', $slug)->first(); + $marketFRE = MarketplaceFractionalRealEstateSeller::with('company')->where('slug', $slug)->first(); // if($user_id){ $offering['own-product'] = $user_id != null ? MarketplaceSellerForm::where(['id' => $marketFRE->seller_forms_id, 'users_id' => $user_id])->exists() : ''; // } diff --git a/app/Http/Controllers/GlobalPrivateCreditController.php b/app/Http/Controllers/GlobalPrivateCreditController.php index eac44dc..f2db3f0 100644 --- a/app/Http/Controllers/GlobalPrivateCreditController.php +++ b/app/Http/Controllers/GlobalPrivateCreditController.php @@ -34,7 +34,7 @@ class GlobalPrivateCreditController extends Controller public function privateCreditAllData($type = 'Open') { try { - return (new test(Product::has('funds')->with('funds','product_images')->where('type', $type)->funds()->globalPrivateCreditFunds()->get())) + return (new test(Product::has('funds')->with('funds.companies','product_images')->where('type', $type)->funds()->globalPrivateCreditFunds()->get())) ->response() ->setStatusCode(200); } catch (\Exception $e) { diff --git a/app/Imports/AlternativeInvestmentFundImport.php b/app/Imports/AlternativeInvestmentFundImport.php index c17b38b..d82e983 100644 --- a/app/Imports/AlternativeInvestmentFundImport.php +++ b/app/Imports/AlternativeInvestmentFundImport.php @@ -68,7 +68,7 @@ class AlternativeInvestmentFundImport implements ToCollection, WithHeadingRow AlternativeInvestmentFund::create([ 'products_id' => $product->id, - 'slug' => $count < 1 ? Str::slug($row['name_of_the_fund']) : Str::slug($row['name_of_the_fund']) . '-' . $count + 1, + 'slug' => Str::slug($row['name_of_the_fund']) . '-' . ++$count, 'fund_name' => $row['name_of_the_fund'], 'registration_number' => $row['registration_no'] ?? null, 'fund_category' => $row['fund_category_iiiiii'], diff --git a/app/Imports/FundImport.php b/app/Imports/FundImport.php index 6245582..26c78cd 100644 --- a/app/Imports/FundImport.php +++ b/app/Imports/FundImport.php @@ -20,7 +20,7 @@ class FundImport implements ToCollection, WithHeadingRow */ protected $category_id; - public function __construct($category_id,) + public function __construct($category_id) { $this->category_id = $category_id; } @@ -93,7 +93,7 @@ class FundImport implements ToCollection, WithHeadingRow $count = Fund::where('issuer',$row['issuer'])->count(); $fund = Fund::create([ 'products_id' => $product->id, - 'slug' => Str::slug($row['issuer']).'-'.$count+1, + 'slug' => Str::slug($row['issuer']).'-'.++$count, 'issuer' => $row['issuer'], 'geographic_focus' => "Global", 'fund_name' => $row['fund_name'], diff --git a/app/Imports/RealEstateImport.php b/app/Imports/RealEstateImport.php index 8a84b6d..25cde1f 100644 --- a/app/Imports/RealEstateImport.php +++ b/app/Imports/RealEstateImport.php @@ -68,7 +68,7 @@ class RealEstateImport implements ToCollection, WithHeadingRow RealEstate::create([ 'products_id' => $product->id, // 'companies_id' => $row['companies_id'], - 'slug' => Str::slug($row['property_name']).'-'.$count+1, + 'slug' => Str::slug($row['property_name']).'-'.++$count, 'property_name' => $row['property_name'], 'geographic_focus' => $this->category_id == 20 ? 'Global' : ($this->category_id == 21 ? 'Global' : ($this->category_id == 22 ? 'Global' : 'India')), 'property_location' => $row['property_location'], diff --git a/app/helper.php b/app/helper.php index 8ff61fd..59a9937 100644 --- a/app/helper.php +++ b/app/helper.php @@ -70,7 +70,7 @@ function imagePath($path = null) $finalPath = "https://staging.jerichoalternatives.in/"; } if (env('APP_ENV') == 'local') { - $finalPath = "http://localhost/new_freeu/my-freeu/"; + $finalPath = "http://localhost/jericho_28_march/"; } return $finalPath . $path; } diff --git a/public/assets/css/FrontendCss/style.css b/public/assets/css/FrontendCss/style.css index 718c2ec..a3b2542 100644 --- a/public/assets/css/FrontendCss/style.css +++ b/public/assets/css/FrontendCss/style.css @@ -4472,7 +4472,7 @@ label.error { .detail img { object-fit: cover; width: 100%; - height: 190px; + height: 190px !important; margin-right: 10px; } diff --git a/resources/views/Frontend/Pages/hedge-funds/product.blade.php b/resources/views/Frontend/Pages/hedge-funds/product.blade.php index 3444e21..454edad 100644 --- a/resources/views/Frontend/Pages/hedge-funds/product.blade.php +++ b/resources/views/Frontend/Pages/hedge-funds/product.blade.php @@ -76,15 +76,15 @@

Issuer

- {{ $hedgeFund->issuer ?? '-' }} + {{ $hedgeFund->issuer ?? 'N/A' }}

Fund Name

- {{ $hedgeFund->fund_name ?? '-' }} + {{ $hedgeFund->fund_name ?? 'N/A' }}

Fund Type

- {{ $hedgeFund->fund_type ?? '-' }} + {{ $hedgeFund->fund_type ?? 'N/A' }}
@@ -94,40 +94,40 @@

About Issuer

- {{ $hedgeFund->about_issuer ?? '-' }} + {{ $hedgeFund->about_issuer ?? 'N/A' }}

Sharpe Ratio

- {{ $hedgeFund->sharpe_ratio ?? '-' }} + {{ $hedgeFund->sharpe_ratio ?? 'N/A' }}

Annualized Volatility

- {{ $hedgeFund->annualized_volatility ?? '-' }} + {{ $hedgeFund->annualized_volatility ?? 'N/A' }}

Max Drawdown

- {{ $hedgeFund->max_dropdown ?? '-' }} + {{ $hedgeFund->max_dropdown ?? 'N/A' }}

ISIN

- {{ $hedgeFund->isin ?? '-' }} + {{ $hedgeFund->isin ?? 'N/A' }}

Inception Date

- {{ $hedgeFund->inception_date ?? '-' }} + {{ $hedgeFund->inception_date ?? 'N/A' }}

Fund AUM

- {{ $hedgeFund->fund_aum ?? '-' }} + {{ $hedgeFund->fund_aum ?? 'N/A' }}

Date As On

- {{ $hedgeFund->date_as_on ?? '-' }} + {{ $hedgeFund->date_as_on ?? 'N/A' }}
@@ -137,7 +137,7 @@

Description

- {{ $hedgeFund->fund_description ?? '-' }} + {{ $hedgeFund->fund_description ?? 'N/A' }}
@@ -147,29 +147,29 @@

Expense Ratio

- {{ $hedgeFund->expense_ratio ?? '-' }} + {{ $hedgeFund->expense_ratio ?? 'N/A' }}

NAV Per Unit

- {{ $hedgeFund->nav_per_unit ?? '-' }} + {{ $hedgeFund->nav_per_unit ?? 'N/A' }}

Minimum Investment

- {{ $hedgeFund->minimum_investment ?? '-' }} + {{ $hedgeFund->minimum_investment ?? 'N/A' }}

YTD

- {{ $hedgeFund->ytd ?? '-' }} + {{ $hedgeFund->ytd ?? 'N/A' }}

1 Year Return

- {{ $hedgeFund->year1_return ?? '-' }} + {{ $hedgeFund->year1_return ?? 'N/A' }}

3 Year Return

- {{ $hedgeFund->year3_return ?? '-' }} + {{ $hedgeFund->year3_return ?? 'N/A' }}
diff --git a/resources/views/Frontend/Pages/indian-real-estate/product.blade.php b/resources/views/Frontend/Pages/indian-real-estate/product.blade.php index bb59180..9fb1288 100644 --- a/resources/views/Frontend/Pages/indian-real-estate/product.blade.php +++ b/resources/views/Frontend/Pages/indian-real-estate/product.blade.php @@ -61,15 +61,15 @@

Property Location

- {{ $realEstate->property_location ?? '-' }} + {{ $realEstate->property_location ?? 'N/A' }}

Project Type

- {{ $realEstate->project_type ?? '-' }} + {{ $realEstate->project_type ?? 'N/A' }}

Current Status

- {{ $realEstate->current_status ?? '-' }} + {{ $realEstate->current_status ?? 'N/A' }}
@@ -83,15 +83,15 @@ {{--
--}} {{--

Property Location

- {{ $realEstate->property_location ?? '-' }} + {{ $realEstate->property_location ?? 'N/A' }}

Project Type

- {{ $realEstate->project_type ?? '-' }} + {{ $realEstate->project_type ?? 'N/A' }}
--}}

Description

- {{ $productData->description ?? '-' }} + {{ $productData->description ?? 'N/A' }}
{{--
--}} @@ -105,58 +105,58 @@

Price Per Sq Ft

- {{ $realEstate->price_per_sq_ft ?? '-' }} + {{ $realEstate->price_per_sq_ft ?? 'N/A' }}

Booking Amount

- {{ $realEstate->booking_amount ?? '-' }} + {{ $realEstate->booking_amount ?? 'N/A' }}

Price Range

- {{ $realEstate->price_range ?? '-' }} + {{ $realEstate->price_range ?? 'N/A' }}

Total Price

- {{ $realEstate->total_price ?? '-' }} + {{ $realEstate->total_price ?? 'N/A' }}

Transaction Type

- {{ $realEstate->transaction_type ?? '-' }} + {{ $realEstate->transaction_type ?? 'N/A' }}

Project Code/Rera Id

- {{ $realEstate->project_code_or_rera_id ?? '-' }} + {{ $realEstate->project_code_or_rera_id ?? 'N/A' }}

Area in sq ft

- {{ $realEstate->area_in_sq_ft ?? '-' }} + {{ $realEstate->area_in_sq_ft ?? 'N/A' }}

Construction Status

- {{ $realEstate->construction_status ?? '-' }} + {{ $realEstate->construction_status ?? 'N/A' }}

Launch Date

- {{ $realEstate->launch_date ?? '-' }} + {{ $realEstate->launch_date ?? 'N/A' }}
{{--

Geographic Focus

- {{ $realEstate->geographic_focus ?? '-' }} -
--}} + {{ $realEstate->geographic_focus ?? 'N/A' }} +

Built Up Area

- {{ $realEstate->built_up_area ?? '-' }} + {{ $realEstate->built_up_area ?? 'N/A' }}
{{-- @dd($realEstate->carpet_area); --}}

Carpet area

- {{ $realEstate->carpet_area ?? '-' }} + {{ $realEstate->carpet_area ?? 'N/A' }}
@@ -169,20 +169,20 @@

No. Of Bedrooms

- {{ $realEstate->no_of_bedrooms ?? '-' }} + {{ $realEstate->no_of_bedrooms ?? 'N/A' }}

No. Of Restrooms

- {{ $realEstate->no_of_restrooms ?? '-' }} + {{ $realEstate->no_of_restrooms ?? 'N/A' }}

No. Of Floors

- {{ $realEstate->no_of_floors ?? '-' }} + {{ $realEstate->no_of_floors ?? 'N/A' }}
{{--

Slug

- {{ $realEstate->slug ?? '-' }} + {{ $realEstate->slug ?? 'N/A' }}
--}}
@@ -190,30 +190,30 @@

Total Towers

- {{ $realEstate->total_towers ?? '-' }} + {{ $realEstate->total_towers ?? 'N/A' }}

Builder Details

- {{ $realEstate->builder_details ?? '-' }} + {{ $realEstate->builder_details ?? 'N/A' }}

Landmarks

- {{ $realEstate->landmarks ?? '-' }} + {{ $realEstate->landmarks ?? 'N/A' }}

Completed In

- {{ $realEstate->completed_in ?? '-' }} + {{ $realEstate->completed_in ?? 'N/A' }}

Total Units

- {{ $realEstate->total_units ?? '-' }} + {{ $realEstate->total_units ?? 'N/A' }}

Unit Type

- {{ $realEstate->unit_type ?? '-' }} + {{ $realEstate->unit_type ?? 'N/A' }}
@@ -227,15 +227,15 @@

Electricity Status

- {{ $realEstate->electricity_status ?? '-' }} + {{ $realEstate->electricity_status ?? 'N/A' }}

Fire Satefy Measures

- {{ $realEstate->fire_safety_measures ?? '-' }} + {{ $realEstate->fire_safety_measures ?? 'N/A' }}

Water Facility

- {{ $realEstate->water_facility ?? '-' }} + {{ $realEstate->water_facility ?? 'N/A' }}
{{-- @endif @@ -243,15 +243,15 @@

Furnished Status

- {{ $realEstate->furnished_status ?? '-' }} + {{ $realEstate->furnished_status ?? 'N/A' }}

Commencement Certificate

- {{ $realEstate->commencement_certificate ?? '-' }} + {{ $realEstate->commencement_certificate ?? 'N/A' }}

Occupancy Certificate

- {{ $realEstate->occupancy_certificate ?? '-' }} + {{ $realEstate->occupancy_certificate ?? 'N/A' }}
{{-- @endif --}} @@ -264,15 +264,15 @@

Price Neogtiable

- {{ $realEstate->price_negotiable ?? '-' }} + {{ $realEstate->price_negotiable ?? 'N/A' }}

Maintenance Fees

- {{ $realEstate->maintenance_fees ?? '-' }} + {{ $realEstate->maintenance_fees ?? 'N/A' }}

Nearest Railway Metro Station

- {{ $realEstate->nearest_railway_metro_station ?? '-' }} + {{ $realEstate->nearest_railway_metro_station ?? 'N/A' }}
{{-- @endif @@ -280,15 +280,15 @@

Amenities

- {{ $realEstate->amenities ?? '-' }} + {{ $realEstate->amenities ?? 'N/A' }}

Car Parking

- {{ $realEstate->car_parking ?? '-' }} + {{ $realEstate->car_parking ?? 'N/A' }}

Remarks

- {{ $realEstate->remarks ?? '-' }} + {{ $realEstate->remarks ?? 'N/A' }}
{{-- @endif --}} @@ -301,11 +301,11 @@

Pre-Leased

- {{ $realEstate->pre_leased ?? '-' }} + {{ $realEstate->pre_leased ?? 'N/A' }}

Tenant Details

- {{ $realEstate->tenant_details ?? '-' }} + {{ $realEstate->tenant_details ?? 'N/A' }}
@@ -318,11 +318,11 @@

Facilities/Features

- {{ $realEstate->facilities_features ?? '-' }} + {{ $realEstate->facilities_features ?? 'N/A' }}

Minimum Investment

- {{ $realEstate->total_price ?? '-' }} + {{ $realEstate->total_price ?? 'N/A' }}
{{-- @endif --}} @@ -334,11 +334,11 @@

Construction Age

- {{ $realEstate->construction_age ?? '-' }} + {{ $realEstate->construction_age ?? 'N/A' }}

Location

- {{ $realEstate->location ?? '-' }} + {{ $realEstate->location ?? 'N/A' }}
@@ -350,11 +350,11 @@ {{-- @if($realEstate->country || $realEstate->elevators) --}}

Country

- {{ $realEstate->country ?? '-' }} + {{ $realEstate->country ?? 'N/A' }}

Elevators

- {{ $realEstate->elevators ?? '-' }} + {{ $realEstate->elevators ?? 'N/A' }}
{{-- @endif --}} diff --git a/resources/views/Frontend/Pages/marketplace/fractional-real-estate.blade.php b/resources/views/Frontend/Pages/marketplace/fractional-real-estate.blade.php index 3fc196a..1e6e245 100644 --- a/resources/views/Frontend/Pages/marketplace/fractional-real-estate.blade.php +++ b/resources/views/Frontend/Pages/marketplace/fractional-real-estate.blade.php @@ -7,15 +7,15 @@

Property Name

- {{$offering->property_name}} + {{$offering->property_name ?? 'N/A'}}

Property Address

- {{$offering->property_address}} + {{$offering->property_address ?? 'N/A'}}

Property Grade

- {{$offering->property_grade}} + {{$offering->property_grade ?? 'N/A'}}
@@ -25,15 +25,15 @@

Asset Type

- {{$offering->asset_type}} + {{$offering->asset_type ?? 'N/A'}}

Annual Rental Yield Earned

- {{$offering->annual_rental_yield_earned}} + {{$offering->annual_rental_yield_earned ?? 'N/A'}}

Rental Escalation

- {{$offering->rental_escalation}} + {{$offering->rental_escalation ?? 'N/A'}}
@@ -43,15 +43,15 @@

Fractional Real Estate Platform

- {{$offering->fractional_real_estate_platform}} + {{$offering->company == null ? 'N/A':$offering->company->company_name }}

Date Of Investment

- {{$offering->date_of_investment}} + {{$offering->date_of_investment ?? 'N/A'}}

Original Amount Invested

- {{$offering->original_amount_invested}} + {{$offering->original_amount_invested ?? 'N/A'}}
@@ -61,15 +61,15 @@

Current Market Value Of The Property

- {{$offering->current_market_value_of_the_property}} + {{$offering->current_market_value_of_the_property ?? 'N/A'}}

Expected Selling Price

- {{$offering->expected_selling_price}} + {{$offering->expected_selling_price ?? 'N/A'}}

Latest Valuation Date

- {{$offering->latest_valuation_date}} + {{$offering->latest_valuation_date ?? 'N/A'}}
diff --git a/resources/views/Frontend/Pages/private-equity-funds/product.blade.php b/resources/views/Frontend/Pages/private-equity-funds/product.blade.php index 9cb4083..24f5573 100644 --- a/resources/views/Frontend/Pages/private-equity-funds/product.blade.php +++ b/resources/views/Frontend/Pages/private-equity-funds/product.blade.php @@ -76,15 +76,15 @@

Issuer

- {{ $privateEquityFund->issuer ?? '-' }} + {{ $privateEquityFund->issuer ?? 'N/A' }}

Fund Name

- {{ $privateEquityFund->fund_name ?? '-' }} + {{ $privateEquityFund->fund_name ?? 'N/A' }}

Fund Type

- {{ $privateEquityFund->fund_type ?? '-' }} + {{ $privateEquityFund->fund_type ?? 'N/A' }}
@@ -94,40 +94,40 @@

About Issuer

- {{ $privateEquityFund->about_issuer ?? '-' }} + {{ $privateEquityFund->about_issuer ?? 'N/A' }}

Sharpe Ratio

- {{ $privateEquityFund->sharpe_ratio ?? '-' }} + {{ $privateEquityFund->sharpe_ratio ?? 'N/A' }}

Annualized Volatility

- {{ $privateEquityFund->annualized_volatility ?? '-' }} + {{ $privateEquityFund->annualized_volatility ?? 'N/A' }}

Max Drawdown

- {{ $privateEquityFund->max_dropdown ?? '-' }} + {{ $privateEquityFund->max_dropdown ?? 'N/A' }}

ISIN

- {{ $privateEquityFund->isin ?? '-' }} + {{ $privateEquityFund->isin ?? 'N/A' }}

Inception Date

- {{ $privateEquityFund->inception_date ?? '-' }} + {{ $privateEquityFund->inception_date ?? 'N/A' }}

Fund AUM

- {{ $privateEquityFund->fund_aum ?? '-' }} + {{ $privateEquityFund->fund_aum ?? 'N/A' }}

Date As ON

- {{ $privateEquityFund->date_as_on ?? '-' }} + {{ $privateEquityFund->date_as_on ?? 'N/A' }}
@@ -138,7 +138,7 @@

Description

- {{ $privateEquityFund->fund_description ?? '-' }} + {{ $privateEquityFund->fund_description ?? 'N/A' }}
@@ -149,29 +149,29 @@

Expense Ratio

- {{ $privateEquityFund->expense_ratio ?? '-' }} + {{ $privateEquityFund->expense_ratio ?? 'N/A' }}

NAV Per Unit

- {{ $privateEquityFund->nav_per_unit ?? '-' }} + {{ $privateEquityFund->nav_per_unit ?? 'N/A' }}

Minimum Investment

- {{ $privateEquityFund->minimum_investment ?? '-' }} + {{ $privateEquityFund->minimum_investment ?? 'N/A' }}

YTD

- {{ $privateEquityFund->ytd ?? '-' }} + {{ $privateEquityFund->ytd ?? 'N/A' }}

1 Year Return

- {{ $privateEquityFund->year1_return ?? '-' }} + {{ $privateEquityFund->year1_return ?? 'N/A' }}

3 Year Return

- {{ $privateEquityFund->year3_return ?? '-' }} + {{ $privateEquityFund->year3_return ?? 'N/A' }}
diff --git a/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php b/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php index 23cf21c..9f21d6d 100644 --- a/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php +++ b/resources/views/Frontend/Pages/venture-capital-funds/product.blade.php @@ -76,15 +76,15 @@

Issuer

- {{ $ventureCapitalFund->issuer ?? '-' }} + {{ $ventureCapitalFund->issuer ?? 'N/A' }}

Fund Name

- {{ $ventureCapitalFund->fund_name ?? '-' }} + {{ $ventureCapitalFund->fund_name ?? 'N/A' }}

Fund Type

- {{ $ventureCapitalFund->fund_type ?? '-' }} + {{ $ventureCapitalFund->fund_type ?? 'N/A' }}
@@ -94,40 +94,40 @@

About Issuer

- {{ $ventureCapitalFund->about_issuer ?? '-' }} + {{ $ventureCapitalFund->about_issuer ?? 'N/A' }}

Sharpe Ratio

- {{ $ventureCapitalFund->sharpe_ratio ?? '-' }} + {{ $ventureCapitalFund->sharpe_ratio ?? 'N/A' }}

Annualized Volatility

- {{ $ventureCapitalFund->annualized_volatility ?? '-' }} + {{ $ventureCapitalFund->annualized_volatility ?? 'N/A' }}

Max Drawdown

- {{ $ventureCapitalFund->max_dropdown ?? '-' }} + {{ $ventureCapitalFund->max_dropdown ?? 'N/A' }}

ISIN

- {{ $ventureCapitalFund->isin ?? '-' }} + {{ $ventureCapitalFund->isin ?? 'N/A' }}

Inception Date

- {{ $ventureCapitalFund->inception_date ?? '-' }} + {{ $ventureCapitalFund->inception_date ?? 'N/A' }}

Fund AUM

- {{ $ventureCapitalFund->fund_aum ?? '-' }} + {{ $ventureCapitalFund->fund_aum ?? 'N/A' }}

Date As ON

- {{ $ventureCapitalFund->date_as_on ?? '-' }} + {{ $ventureCapitalFund->date_as_on ?? 'N/A' }}
@@ -138,7 +138,7 @@

Description

- {{ $productData->funds->fund_description ?? '-' }} + {{ $productData->funds->fund_description ?? 'N/A' }}
@@ -149,29 +149,29 @@

Expense Ratio

- {{ $ventureCapitalFund->expense_ratio ?? '-' }} + {{ $ventureCapitalFund->expense_ratio ?? 'N/A' }}

NAV Per Unit

- {{ $ventureCapitalFund->nav_per_unit ?? '-' }} + {{ $ventureCapitalFund->nav_per_unit ?? 'N/A' }}

Minimum Investment

- {{ $ventureCapitalFund->minimum_investment ?? '-' }} + {{ $ventureCapitalFund->minimum_investment ?? 'N/A' }}

YTD

- {{ $ventureCapitalFund->ytd ?? '-' }} + {{ $ventureCapitalFund->ytd ?? 'N/A' }}

1 Year Return

- {{ $ventureCapitalFund->year1_return ?? '-' }} + {{ $ventureCapitalFund->year1_return ?? 'N/A' }}

3 Year Return

- {{ $ventureCapitalFund->year3_return ?? '-' }} + {{ $ventureCapitalFund->year3_return ?? 'N/A' }}