This commit is contained in:
parent
c532087d73
commit
7822ffa389
@ -24,9 +24,7 @@ public function toMail(object $notifiable): MailMessage
|
|||||||
return (new MailMessage())
|
return (new MailMessage())
|
||||||
->subject("预约试驾线索通知")
|
->subject("预约试驾线索通知")
|
||||||
->line("收到新的试驾预约信息:")
|
->line("收到新的试驾预约信息:")
|
||||||
->line($table)
|
->line($table);
|
||||||
->line('')
|
|
||||||
->salutation("祝,工作愉快!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function toArray(object $notifiable): array
|
public function toArray(object $notifiable): array
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
@foreach($items as $sn => $item)
|
@foreach($items as $sn => $item)
|
||||||
<tr bgcolor="#ffffff">
|
<tr bgcolor="#ffffff">
|
||||||
<td>{{ $sn + 1 }}</td>
|
<td align="center">{{ $sn + 1 }}</td>
|
||||||
<td>{{ $item->name }}</td>
|
<td align="center">{{ $item->name }}</td>
|
||||||
<td style="font-family: monospace">{{ $item->mobile }}</td>
|
<td align="center" style="font-family: monospace">{{ $item->mobile }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user