From 0328565c587f456e9be7c567f9ec0a078c7f5e40 Mon Sep 17 00:00:00 2001 From: cj201199 Date: Thu, 16 May 2024 11:58:55 +0530 Subject: [PATCH] bugs solving --- resources/views/Frontend/Pages/index.blade.php | 2 +- resources/views/components/angel-fund-product.blade.php | 2 +- .../views/components/fractional-real-estate-product.blade.php | 2 +- .../components/fund-for-distressed-asset-product.blade.php | 2 +- .../components/global-commercial-real-estate-product.blade.php | 2 +- resources/views/components/global-hedge-fund-product.blade.php | 2 +- .../components/global-private-equity-fund-product.blade.php | 2 +- .../components/global-residential-real-estate-product.blade.php | 2 +- .../components/global-venture-capital-fund-product.blade.php | 2 +- resources/views/components/hedge-fund-product.blade.php | 2 +- .../components/indian-commercial-real-estate-product.blade.php | 2 +- .../components/indian-industrial-real-estate-product.blade.php | 2 +- .../components/indian-residential-real-estate-product.blade.php | 2 +- .../views/components/infrastructure-fund-product.blade.php | 2 +- resources/views/components/long-only-equity-funds.blade.php | 2 +- resources/views/components/p-i-p-e-fund-product.blade.php | 2 +- .../views/components/private-credit-fund-product.blade.php | 2 +- .../views/components/private-equity-fund-product.blade.php | 2 +- .../views/components/private-real-estate-fund-product.blade.php | 2 +- .../views/components/venture-capital-fund-product.blade.php | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/resources/views/Frontend/Pages/index.blade.php b/resources/views/Frontend/Pages/index.blade.php index 2863916..79d52c6 100644 --- a/resources/views/Frontend/Pages/index.blade.php +++ b/resources/views/Frontend/Pages/index.blade.php @@ -304,7 +304,7 @@

Minimum Investment: {{ $pick->minimum_investment }}

-

{{ Str::limit($pick->description,100) }}

+

{{ Str::limit($pick->description,250) }}

diff --git a/resources/views/components/angel-fund-product.blade.php b/resources/views/components/angel-fund-product.blade.php index 7875d68..3523a17 100644 --- a/resources/views/components/angel-fund-product.blade.php +++ b/resources/views/components/angel-fund-product.blade.php @@ -43,7 +43,7 @@

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

-

{{ Str::limit($data->description,100) }}

+

{{ Str::limit($data->description,250) }}

diff --git a/resources/views/components/fractional-real-estate-product.blade.php b/resources/views/components/fractional-real-estate-product.blade.php index 0e3ce2f..6b823c0 100644 --- a/resources/views/components/fractional-real-estate-product.blade.php +++ b/resources/views/components/fractional-real-estate-product.blade.php @@ -54,7 +54,7 @@

Minimum Investment: {{ $freData->fractional_real_estate->minimum_investment ?? 'N/A' }}

{{--

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

--}} -

{{ Str::limit($freData->description,100) }}

+

{{ Str::limit($freData->description,250) }}

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 3ff8a1d..24524d9 100644 --- a/resources/views/components/fund-for-distressed-asset-product.blade.php +++ b/resources/views/components/fund-for-distressed-asset-product.blade.php @@ -36,7 +36,7 @@ --}}

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

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}

diff --git a/resources/views/components/global-commercial-real-estate-product.blade.php b/resources/views/components/global-commercial-real-estate-product.blade.php index 5d459ce..5c6a9a7 100644 --- a/resources/views/components/global-commercial-real-estate-product.blade.php +++ b/resources/views/components/global-commercial-real-estate-product.blade.php @@ -37,7 +37,7 @@ --}}

Total Price: {{$data->real_estate->total_price}}

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}

diff --git a/resources/views/components/global-hedge-fund-product.blade.php b/resources/views/components/global-hedge-fund-product.blade.php index b827dee..5416fb6 100644 --- a/resources/views/components/global-hedge-fund-product.blade.php +++ b/resources/views/components/global-hedge-fund-product.blade.php @@ -37,7 +37,7 @@ --}}

Minimum Investment: {{$ghfData->funds->minimum_investment}}

-

{{Str::limit($ghfData->funds->fund_description,100)}}

+

{{Str::limit($ghfData->funds->fund_description,250)}}

diff --git a/resources/views/components/global-private-equity-fund-product.blade.php b/resources/views/components/global-private-equity-fund-product.blade.php index 2098bd7..f5262d6 100644 --- a/resources/views/components/global-private-equity-fund-product.blade.php +++ b/resources/views/components/global-private-equity-fund-product.blade.php @@ -40,7 +40,7 @@ --}}

Total Price: {{ $gireData->funds->fund_aum }}

-

{{ Str::limit($gireData->funds->fund_description,100) }}

+

{{ Str::limit($gireData->funds->fund_description,250) }}

diff --git a/resources/views/components/global-residential-real-estate-product.blade.php b/resources/views/components/global-residential-real-estate-product.blade.php index 9b6020b..4937f41 100644 --- a/resources/views/components/global-residential-real-estate-product.blade.php +++ b/resources/views/components/global-residential-real-estate-product.blade.php @@ -38,7 +38,7 @@

Total Price: {{$data->real_estate->total_price}}

{{$data->real_estate->property_location}}

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}

diff --git a/resources/views/components/global-venture-capital-fund-product.blade.php b/resources/views/components/global-venture-capital-fund-product.blade.php index 183c3a4..758de28 100644 --- a/resources/views/components/global-venture-capital-fund-product.blade.php +++ b/resources/views/components/global-venture-capital-fund-product.blade.php @@ -70,7 +70,7 @@

Total Price: {{ $gireData->funds->minimum_investment }}

-

{{ Str::limit($gireData->funds->fund_description,200) }}

+

{{ Str::limit($gireData->funds->fund_description,250) }}

diff --git a/resources/views/components/hedge-fund-product.blade.php b/resources/views/components/hedge-fund-product.blade.php index 33ecb0b..6d36487 100644 --- a/resources/views/components/hedge-fund-product.blade.php +++ b/resources/views/components/hedge-fund-product.blade.php @@ -42,7 +42,7 @@

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

-

{{ Str::limit($data->description,100) }}

+

{{ Str::limit($data->description,250) }}

diff --git a/resources/views/components/indian-commercial-real-estate-product.blade.php b/resources/views/components/indian-commercial-real-estate-product.blade.php index ac02bdc..ae489cc 100644 --- a/resources/views/components/indian-commercial-real-estate-product.blade.php +++ b/resources/views/components/indian-commercial-real-estate-product.blade.php @@ -34,7 +34,7 @@ --}}

Total Price: {{$data->realEstate->total_price}}

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}

diff --git a/resources/views/components/indian-industrial-real-estate-product.blade.php b/resources/views/components/indian-industrial-real-estate-product.blade.php index 2d3edca..9305945 100644 --- a/resources/views/components/indian-industrial-real-estate-product.blade.php +++ b/resources/views/components/indian-industrial-real-estate-product.blade.php @@ -35,7 +35,7 @@ --}}

Minimum Investment: {{$ffdaData->realEstate->total_price}}

-

{{Str::limit($ffdaData->realEstate->facilities_features,200)}}

+

{{Str::limit($ffdaData->realEstate->facilities_features,250)}}

diff --git a/resources/views/components/indian-residential-real-estate-product.blade.php b/resources/views/components/indian-residential-real-estate-product.blade.php index fe73dda..393b600 100644 --- a/resources/views/components/indian-residential-real-estate-product.blade.php +++ b/resources/views/components/indian-residential-real-estate-product.blade.php @@ -34,7 +34,7 @@ --}}

Minimum Investment: {{$ffdaData->realEstate->price_range}}

-

{{Str::limit($ffdaData->description,100)}}

+

{{Str::limit($ffdaData->description,250)}}

diff --git a/resources/views/components/infrastructure-fund-product.blade.php b/resources/views/components/infrastructure-fund-product.blade.php index c725de6..ed54b85 100644 --- a/resources/views/components/infrastructure-fund-product.blade.php +++ b/resources/views/components/infrastructure-fund-product.blade.php @@ -37,7 +37,7 @@ --}}

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

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}

diff --git a/resources/views/components/long-only-equity-funds.blade.php b/resources/views/components/long-only-equity-funds.blade.php index 84c3c4b..988dab1 100644 --- a/resources/views/components/long-only-equity-funds.blade.php +++ b/resources/views/components/long-only-equity-funds.blade.php @@ -45,7 +45,7 @@

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

-

{{ Str::limit($data->description,100) }}

+

{{ Str::limit($data->description,250) }}

diff --git a/resources/views/components/p-i-p-e-fund-product.blade.php b/resources/views/components/p-i-p-e-fund-product.blade.php index a68e616..f7f5ea4 100644 --- a/resources/views/components/p-i-p-e-fund-product.blade.php +++ b/resources/views/components/p-i-p-e-fund-product.blade.php @@ -36,7 +36,7 @@ --}}

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

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}

diff --git a/resources/views/components/private-credit-fund-product.blade.php b/resources/views/components/private-credit-fund-product.blade.php index 2b7dd54..094ec7e 100644 --- a/resources/views/components/private-credit-fund-product.blade.php +++ b/resources/views/components/private-credit-fund-product.blade.php @@ -48,7 +48,7 @@

Minimum Investment: {{ $data->alternative_investment_fund->minimum_investment ?? 'N/A' }}

-

{{ Str::limit($data->description,100) }}

+

{{ Str::limit($data->description,250) }}

diff --git a/resources/views/components/private-equity-fund-product.blade.php b/resources/views/components/private-equity-fund-product.blade.php index a655b6d..8e8f852 100644 --- a/resources/views/components/private-equity-fund-product.blade.php +++ b/resources/views/components/private-equity-fund-product.blade.php @@ -42,7 +42,7 @@

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

-

{{ Str::limit($data->description,100) }}

+

{{ Str::limit($data->description,250) }}

diff --git a/resources/views/components/private-real-estate-fund-product.blade.php b/resources/views/components/private-real-estate-fund-product.blade.php index bb5c3b8..b47207f 100644 --- a/resources/views/components/private-real-estate-fund-product.blade.php +++ b/resources/views/components/private-real-estate-fund-product.blade.php @@ -43,7 +43,7 @@

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

-

{{ Str::limit($data->description,100) }}

+

{{ Str::limit($data->description,250) }}

diff --git a/resources/views/components/venture-capital-fund-product.blade.php b/resources/views/components/venture-capital-fund-product.blade.php index 78c87db..bb3eac4 100644 --- a/resources/views/components/venture-capital-fund-product.blade.php +++ b/resources/views/components/venture-capital-fund-product.blade.php @@ -37,7 +37,7 @@ --}}

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

-

{{Str::limit($data->description,100)}}

+

{{Str::limit($data->description,250)}}