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.

21 lines
658 B

1 month ago
  1. {{--$order collection is available here--}}
  2. @component('mail::message')
  3. @if($receiver == 'admin')
  4. # {{ __('sms.order.orderCreated.admin.subject') }}
  5. {{ __('sms.order.orderCreated.admin.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number,'customer_name'=>$customer]) }}
  6. @else
  7. # {{ __('sms.order.orderCreated.storeOwner.subject') }}
  8. {{ __('sms.order.orderCreated.storeOwner.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number,'customer_name'=>$customer]) }}
  9. @endif
  10. @component('mail::button', ['url' => $url ])
  11. {{__('common.view-order')}}
  12. @endcomponent
  13. {{__('common.thanks')}},<br>
  14. {{ config('app.name') }}
  15. @endcomponent