@extends('layouts.front-end.app') @section('title', translate('order_Complete')) @section('content')
@if(auth('customer')->check() || session('guest_id'))
@if(isset($isNewCustomerInSession) && $isNewCustomerInSession) {{ translate('Order_Placed_&_Account_Created_Successfully') }}! @else {{ translate('Order_Placed_Successfully') }}! @endif
@if (isset($order_ids) && count($order_ids) > 0)

{{ translate('your_payment_has_been_successfully_processed_and_your_order') }} - @foreach ($order_ids as $key => $order) {{ $order }} @endforeach {{ translate('has_been_placed.') }}

@else

{{ translate('your_order_is_being_processed_and_will_be_completed.') }} {{ translate('You_will_receive_an_email_confirmation_when_your_order_is_placed.') }}

@endif
@endif
@endsection