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

1 month ago
  1. {{--$order collection is available here--}}
  2. @component('mail::message')
  3. # {{ __('sms.order.statusChangeOrder.customer.subject') }}
  4. @php
  5. $status = ucfirst(str_replace('-', ' ', $order->order_status));
  6. $status = " **".$status."** ";
  7. @endphp
  8. {{ __('sms.order.statusChangeOrder.customer.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number,'order_status'=>$status]) }}
  9. @component('mail::button', ['url' => $url ])
  10. {{__('common.view-order')}}
  11. @endcomponent
  12. {{__('common.thanks')}},<br>
  13. {{ config('app.name') }}
  14. @endcomponent