init
All checks were successful
Deploy to Production / deploy (push) Successful in 13s

This commit is contained in:
珂珂 2024-11-15 17:38:32 +08:00
parent c532087d73
commit 7822ffa389
2 changed files with 4 additions and 6 deletions

View File

@ -24,9 +24,7 @@ public function toMail(object $notifiable): MailMessage
return (new MailMessage())
->subject("预约试驾线索通知")
->line("收到新的试驾预约信息:")
->line($table)
->line('')
->salutation("祝,工作愉快!");
->line($table);
}
public function toArray(object $notifiable): array

View File

@ -6,9 +6,9 @@
</tr>
@foreach($items as $sn => $item)
<tr bgcolor="#ffffff">
<td>{{ $sn + 1 }}</td>
<td>{{ $item->name }}</td>
<td style="font-family: monospace">{{ $item->mobile }}</td>
<td align="center">{{ $sn + 1 }}</td>
<td align="center">{{ $item->name }}</td>
<td align="center" style="font-family: monospace">{{ $item->mobile }}</td>
</tr>
@endforeach
</table>