mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 01:04:34 -04:00
Fixes for BPP in subscriptions
This commit is contained in:
parent
066f959c7d
commit
7357e4026f
@ -19,7 +19,12 @@ class AddSmsVerificationToHostedAccount extends Migration
|
|||||||
$table->boolean('account_sms_verified')->default(0);
|
$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();
|
||||||
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
@foreach($subscription->service()->products() as $product)
|
@foreach($subscription->service()->products() as $product)
|
||||||
<div class="flex items-center justify-between mb-4 bg-white rounded px-6 py-4 shadow-sm border">
|
<div class="flex items-center justify-between mb-4 bg-white rounded px-6 py-4 shadow-sm border">
|
||||||
<div>
|
<div>
|
||||||
<p class="text-sm text-gray-800">{{ $product->notes }}</p>
|
<p class="text-sm text-gray-800">{!! $product->notes !!}</p>
|
||||||
</div>
|
</div>
|
||||||
<div data-ref="price-and-quantity-container">
|
<div data-ref="price-and-quantity-container">
|
||||||
<span
|
<span
|
||||||
|
Loading…
x
Reference in New Issue
Block a user