diff --git a/database/migrations/2022_07_26_091216_add_sms_verification_to_hosted_account.php b/database/migrations/2022_07_26_091216_add_sms_verification_to_hosted_account.php index 168f18da29d7..7ef526562963 100644 --- a/database/migrations/2022_07_26_091216_add_sms_verification_to_hosted_account.php +++ b/database/migrations/2022_07_26_091216_add_sms_verification_to_hosted_account.php @@ -19,7 +19,12 @@ class AddSmsVerificationToHostedAccount extends Migration $table->boolean('account_sms_verified')->default(0); }); - App\Models\Account::query()->update(['account_sms_verified' => true]); + App\Models\Account::query()->cursor()->each(function ($account){ + + $account->account_sms_verified = true; + $account->save(); + + }); } /** diff --git a/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php b/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php index da5fcadbe9be..3c53f02aae60 100644 --- a/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php +++ b/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php @@ -20,7 +20,7 @@ @foreach($subscription->service()->products() as $product)
{{ $product->notes }}
+{!! $product->notes !!}