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.
 
 
 

22 lines
658 B

{{--$order collection is available here--}}
@component('mail::message')
@if($receiver == 'admin')
# {{ __('sms.order.orderCreated.admin.subject') }}
{{ __('sms.order.orderCreated.admin.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number,'customer_name'=>$customer]) }}
@else
# {{ __('sms.order.orderCreated.storeOwner.subject') }}
{{ __('sms.order.orderCreated.storeOwner.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number,'customer_name'=>$customer]) }}
@endif
@component('mail::button', ['url' => $url ])
{{__('common.view-order')}}
@endcomponent
{{__('common.thanks')}},<br>
{{ config('app.name') }}
@endcomponent