@extends('components.email.layout') @section('content')
{{-- @if ($data->status === APPROVED)

Your package has been approved and is ready for processing.

We will notify you once your package is shipped. If you have any questions, please feel free to contact our customer support team at {{ config('settings.site_email') }}

--}} @if ($data->status === AVAILABLE)

The requested package is now available.

If you have any questions or need assistance, feel free to contact our support team via {{ config('settings.site_email') }}.

@elseif ($data->status === CANCELLED)

We regret to inform you that your package has been cancelled.

If you have any questions or concerns regarding the cancellation, please contact our support team {{ config('settings.site_email') }} for further assistance.

@elseif ($data->status === DISTRIBUTION)

Your package is currently being prepared for distribution.

We will notify you once your package is shipped. If you have any questions, please feel free to contact our customer support team at {{ config('settings.site_email') }}

@elseif ($data->status === INTRANSIT)

Your package is on its way and currently in transit.

You can use the tracking information provided to monitor the progress of your shipment. If you have any questions, please don't hesitate to contact us via {{ config('settings.site_email') }}

@elseif ($data->status === INWAREHOUSE)

Your package has arrived at the warehouse and is being processed.

We will notify you once your package is ready for shipping. If you have any questions or need assistance, please feel free to contact our support team via {{ config('settings.site_email') }}.

@elseif ($data->status === INVOICED)

An invoice for your package has been generated.

Please review the invoice details and proceed with the payment to ensure the timely processing of your package. If you have any questions or concerns, feel free to contact us via {{ config('settings.site_email') }}.

@elseif ($data->status === ONROUTE)

Your package is on its way to the designated destination.

We expect your package to arrive soon.

If you have any questions or need further information, please don't hesitate to contact our customer support via {{ config('settings.site_email') }}

@elseif ($data->status === ONHOLD)

We hope this email finds you well. We regret to inform you that your package with tracking number {{ $data->trackingNumber }} is currently being held by customs and requires a clearance certificate for further processing.

Customs regulations dictate that certain shipments need additional documentation, such as a clearance certificate, to comply with import/export procedures. This certificate ensures that the package meets all legal requirements and can be released from customs.

To expedite the clearance process and ensure the prompt delivery of your package, we kindly request that you provide the required clearance certificate as soon as possible.

We are working on resolving the issue. In the meantime, if you have any questions or need assistance, please reach out to our support team via {{ config('settings.site_email') }}

@elseif ($data->status === PENDINGCOLLECTION)

Your package is ready for collection.

Please proceed to the designated collection point to retrieve your package. If you have any questions or need assistance, feel free to contact our support team via {{ config('settings.site_email') }}.

@elseif ($data->status === PENDINGPAYMENT)

Your package is pending payment.

To proceed with the package, please complete the payment process as soon as possible. If you have any questions or need assistance, please don't hesitate to contact our customer support team via {{ config('settings.site_email') }}.

@elseif ($data->status === RECEIVEDOFFICE)

Your package has been received at the office.

We will process your package and notify you once it is ready for further action. If you have any questions or need assistance, please feel free to contact our support team via {{ config('settings.site_email') }}.

@endif
@endsection