12 lines
312 B
PHP
12 lines
312 B
PHP
<p>Hi,</p>
|
|
|
|
<p>Thanks for your order! Your order <strong>{{ $reference }}</strong> is confirmed.</p>
|
|
|
|
<ul>
|
|
@foreach ($lines as $line)
|
|
<li>{{ $line->quantity }} × {{ $line->description }} — {{ $line->total?->formatted }}</li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<p>Total: <strong>{{ $total }}</strong></p>
|