You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
532 B
20 lines
532 B
{{--$order collection is available here--}}
|
|
|
|
@component('mail::message')
|
|
# {{ __('sms.order.statusChangeOrder.customer.subject') }}
|
|
@php
|
|
|
|
$status = ucfirst(str_replace('-', ' ', $order->order_status));
|
|
$status = " **".$status."** ";
|
|
@endphp
|
|
|
|
{{ __('sms.order.statusChangeOrder.customer.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number,'order_status'=>$status]) }}
|
|
|
|
|
|
@component('mail::button', ['url' => $url ])
|
|
{{__('common.view-order')}}
|
|
@endcomponent
|
|
|
|
{{__('common.thanks')}},<br>
|
|
{{ config('app.name') }}
|
|
@endcomponent
|