@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => Route('frontend.shopping', $order->activity_match->uuid) ])
{{ $order->activity->name }}
@endcomponent
@endslot
# 訂單已成立通知信
親愛的【{{ $order->customer->name }}】您好:
感謝您在 {{ $order->activity->name }} 購物,我們已收到您的訂單需求,可按下「查看訂單」確認您的訂單內容與付款狀態。
訂單編號:{{ $order->code }}
付款金額: $ {{ number_format($order->total) }} 元
@component('mail::table')
| 編號 |商品名稱 | 單價 | 數量 | 小計 |
|:---:|:--------| ----:|:------:|-----:|
@foreach ($order->items as $key => $item)
| {{ $key+1 }} | {{ $item->product_name }} | $ {{ number_format($item->price) }} | {{ $item->quantity }} | $ {{ number_format($item->subtotal) }} |
@endforeach
@endcomponent
@component('mail::button', ['url' => Route('frontend.order.show', $order->code) , 'color' => 'success'])
查看訂單
@endcomponent
再次感謝您的訂購!
為確保服務品質與商品送達時間,請務必再次確認收件人電話與地址。
以上,
若有任何問題歡迎使用官方LINE@聯繫我們,LINE ID:@312onfre
活動頁面: [{{ $order->activity->name }}]({{ Route('frontend.shopping', $order->activity_match->uuid) }})
客服專線:04-23760082
客服信箱:service@june1.com.tw
客服時間:周一至周五AM9:00~PM18:00
※本信件為系統自動發送請勿直接回覆。
Thanks,
{{ config('app.name') }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('mail::subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
@endcomponent
@endslot
@endcomponent