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.
25 lines
637 B
25 lines
637 B
@component('mail::message')
|
|
|
|
@if($receiver == 'admin')
|
|
# {{ __('sms.order.refundRequested.admin.subject') }}
|
|
|
|
{{ __('sms.order.refundRequested.admin.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number]) }}
|
|
|
|
@component('mail::button', ['url' => $url ])
|
|
{{__('common.view-order')}}
|
|
@endcomponent
|
|
@else
|
|
# {{ __('sms.order.refundRequested.customer.subject') }}
|
|
|
|
{{ __('sms.order.refundRequested.customer.message',['ORDER_TRACKING_NUMBER'=>$order->tracking_number]) }}
|
|
|
|
@component('mail::button', ['url' => $url ])
|
|
{{__('common.view-order')}}
|
|
@endcomponent
|
|
@endif
|
|
|
|
|
|
|
|
{{__('common.thanks')}},<br>
|
|
{{ config('app.name') }}
|
|
@endcomponent
|