改进
This commit is contained in:
parent
e5f4ea309f
commit
682d853c0a
@ -51,7 +51,7 @@
|
|||||||
const inter = setInterval(function () {
|
const inter = setInterval(function () {
|
||||||
axios.get(location.href)
|
axios.get(location.href)
|
||||||
.then(function (response) {
|
.then(function (response) {
|
||||||
if (response.data.paid_at) {
|
if (response.data.paid_at ?? null) {
|
||||||
document.getElementById('pay-success').classList.remove('d-none');
|
document.getElementById('pay-success').classList.remove('d-none');
|
||||||
document.getElementById('pay').classList.add('d-none');
|
document.getElementById('pay').classList.add('d-none');
|
||||||
|
|
||||||
|
22
resources/views/vendor/mail/html/panel.blade.php
vendored
22
resources/views/vendor/mail/html/panel.blade.php
vendored
@ -1,14 +1,14 @@
|
|||||||
<table class="panel" width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
<table class="panel" width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="panel-content">
|
<td class="panel-content">
|
||||||
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="panel-item">
|
<td class="panel-item">
|
||||||
{{ Illuminate\Mail\Markdown::parse($slot) }}
|
{{ Illuminate\Mail\Markdown::parse($slot) }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user