@php
$addressArray = json_decode($order->shipping_address, true);
$address = $addressArray['first_name'].' '.$addressArray['last_name'].', '.$addressArray['house_no'].', '.$addressArray['address'].', '.$addressArray['address_additional'].', '.$addressArray['city'].'
Postleitzahl/PLZ : '.$addressArray['postal_code'].',
Telefon : '.$addressArray['phone'];
@endphp
|
{{__('Dear')}} {{ucfirst($order->user->first_name).' '.ucfirst($order->user->last_name)}}, |
|
|
{{__('We are pleased to inform you that your order with the number')}} #{{$order->order_no}} {{__('has been successfully delivered. We hope you are satisfied with your purchase!')}} |
|
|
{{__('If you have any questions or problems, our customer service will be happy to help you.')}} |
|
|
{{__('Best regards,')}} {{__('Your')}} {{env("APP_NAME")}} - Team |