{{--後台成立抵扣訂單 (用不到)--}} @component('emails.Components.Body', ['merchant' => $order->merchant]) @component('emails.Components.Content', [ 'title' => '您有一筆待確認訂單', 'fullName' => $order->fullName, ]) {!! html_entity_decode(nl2br($customContent)) !!} @endcomponent @include('emails.Components.Table',[ 'title' => '[訂單#'.$order->id.']
(訂購日期:'.$orderCreatedTime.')', 'data' => [ 0 => [ 0 => '方案名稱', 1 => $order->prepaidOrder->prepaidTitle ], 1 => [ 0 => '抵用次數', 1 => $order->deductHistory->deductTimes ], 2 => [ 0 => '總計金額', 1 => $order->total ] ] ]) @include('emails.Components.Button', [ 'class'=> 'mb-2', 'link' => config('app.dingsomething.site.url').'order/'.$order->uuid, 'text' => '立即前往確認', ]) @include('emails.Components.Link', [ 'link' => config('app.dingsomething.site.url').'order/'.$order->uuid ]) @endcomponent