HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/checkout/payment/pendingCompleted.blade.php
@extends('layouts.master')

@section('background')
    <div class="bg-50"></div>
@stop

@section('sidebar')
    @include('partials.sidebar',['customerService' => ''])
@stop

@section('brandNavigationBar')
    @include('partials.brandNavigationBar')
@stop

@section('content')
    <div class="content-container column fluid-100">

        <!-- Breadcrumb -->

        @include('partials.breadcrumb')

                <!-- Title -->

        <h1 class="page-title">{{ $entity->name }}</h1>

        <article class="text-block content-block column fluid-100">
            @if($order)
                <h2>{{\Lang::get('checkout/checkout.you_have_payed_title')}}</h2>

                <div class="description column">
                    <p>
                        {{\Lang::get('checkout/checkout.you_have_payed_text')}}
                    </p>
                    <a class="btn"
                       href="/{{$shop->getPageService()->page('home')->route}}">{{\Lang::get('checkout/checkout.you_have_payed_back')}}</a>
                </div>
                <div class="clear"></div>

                <div class="order-block order-block--pending">
                    <h2 class="order-title">
                        <div class="rule-1"><span class="order-title__label">{{ Lang::get('partials/orderOverview.order_number') }}:</span> {{$order->order_number}}</div>
                        @if($order->customer)
                            <div class="rule-1"><span class="order-title__label">{{ Lang::get('partials/orderOverview.customer_number') }}:</span> {{$order->customer->customer_number}}</div>
                        @endif
                        <div class="rule-1"><span class="order-title__label">{{ Lang::get('partials/orderOverview.order_date') }}:</span> {{(new DateTime($order->ordered_at))->format('d-m-Y')}}</div>
                    </h2>
                    <div class="column fluid-50">
                        <p>
                            <strong>{{ Lang::get('customer/overview.invoice_address') }}</strong><br/>
                            {{ $order->getFullInvoiceAddress() }}
                        </p>
                    </div>
                    <div class="column fluid-50 last">
                        <p>
                            <strong>{{ Lang::get('customer/overview.shipping_address') }}</strong><br/>
                            @if($order->dpd_carrier_shop_id != null)
                                {{ $order->getFullDPDAddress() }}
                            @else
                                {{ $order->getFullShippingAddress() }}
                            @endif
                        </p>
                    </div>
                    <div class="clear"></div>
                </div>

                @include('partials.orders.account.orderOverview')


            @else
                <div class="description column">
                    {{ Lang::get('payments/complete_pending.no_order_found') }}
                </div>
            @endif
        </article>
    </div>

@stop