改进
This commit is contained in:
parent
e5f4ea309f
commit
682d853c0a
@ -51,7 +51,7 @@
|
||||
const inter = setInterval(function () {
|
||||
axios.get(location.href)
|
||||
.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').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">
|
||||
<tr>
|
||||
<td class="panel-content">
|
||||
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
||||
<tr>
|
||||
<td class="panel-item">
|
||||
{{ Illuminate\Mail\Markdown::parse($slot) }}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="panel-content">
|
||||
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
||||
<tr>
|
||||
<td class="panel-item">
|
||||
{{ Illuminate\Mail\Markdown::parse($slot) }}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user