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/completePending.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 complete-pending">
            <h2>{{ $entity->name }}</h2>

            @if($order)

                <div class="description column">
                    {{ $entity->description }}
                </div>

                <div class="description column last">
                    {{ $entity->description_two }}
                </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')

                <div class="clear"></div>
                <div class="payment-method">
                    {{ Form::open([
                        'url' => Shop::getLanguageService()->getCurrentLanguage() . '/checkout/processPending',
                        'name' => 'form'
                    ]) }}

                    @include('checkout.payment.selectPaymentMethod')


                    {{ Form::hidden('token',$token )}}

                    <div class="pay-holder">
                        <div class="btn-holder pay">
                            {{ Form::submit( Lang::get('payments/complete_pending.button') ,array('class'=>'btn safe')) }}
                            <span class="arrow"></span>
                            <span class="lock"></span>
                        </div>
                    </div>
                    {{ Form::close() }}
                </div>

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

    @stop