@extends('email.layout') @section('content')

{{ __('Shipment Process') }}

{{ __('Order ID: ') . $order->Order_Number }}

{{ __('Total Amount: ') . $order->Grand_Total }}

@if ($data == ORDER_PENDING)

{{ __('Your order is pending!') }}

@elseif($data == ORDER_PROCESSING)

{{ __('Your order is on process!') }}

@elseif($data == ORDER_SHIPPED)

{{ __('Your order is shipped!') }}

@elseif($data == ORDER_DELIVERED)

{{ __('Your order is delivered!') }}

@elseif($data == ORDER_CANCELLED)

{{ __('Your order is cancelled!') }}

@elseif($data == ORDER_RETURN)

{{ __('Cancel order returned to our hub!') }}

@else

{{ __('Order process failed!') }}

@endif
@endsection