Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/resources/themes/marketplace-box/templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/resources/themes/marketplace-box/templates/checkout.blade.php
@extends('layouts.public')

@section('css')
    <style type="text/css">
        .sw-btn-group .btn {
            background-color: #f5f5f5;
            border-color: #e1e7ec;
        }

        .sw-btn-group .btn:hover {
            background-color: #dcdbdb;
        }

        .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle).btn-secondary, .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle).btn-outline-secondary {
            border-right: 1px solid #e1e7ec;
        }

        .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle) {
            margin-right: 10px;
            padding-right: 22px;

        }

        body {
            line-height: normal !important;
        }
    </style>
@endsection

@section('editable_content')
    @php \Actions::do_action('pre_content', null, null) @endphp
    <div class="gap"></div>
    <div id="checkoutWizard">
        <ul>

            @guest
                <li><a href="#checkout-method"
                       data-content-url="{{url('checkout/step/checkout-method')}}">
                        @lang('corals-marketplace-box::labels.template.checkout.checkout_method') <br/>
                        <small></small>
                    </a>
                </li>
            @endguest

            <li><a href="#cart-details" data-content-url="{{url('checkout/step/cart-details')}}">
                    @lang('corals-marketplace-box::labels.template.checkout.detail')<br/>
                    <small></small>
                </a></li>

            <li><a href="#billing-shipping-address"
                   data-content-url="{{url('checkout/step/billing-shipping-address')}}">
                    @lang('corals-marketplace-box::labels.template.checkout.address')<br/>
                    <small></small>
                </a></li>
            @if($enable_shipping)
                <li><a href="#shipping-method"
                       data-content-url="{{url('checkout/step/shipping-method')}}">
                        @lang('corals-marketplace-box::labels.template.checkout.select_shipping')<br/>
                        <small></small>
                    </a></li>
            @endif
            @if($hasPaymentStep)
                <li><a href="#select-payment" data-content-url="{{url('checkout/step/select-payment')}}">
                        @lang('corals-marketplace-box::labels.template.checkout.select_payment')<br/>
                        <small></small>
                    </a></li>
            @endif
            <li><a href="#order-review" data-content-url="{{url('checkout/step/order-review')}}">
                    @lang('corals-marketplace-box::labels.template.checkout.order_review')<br/>
                    <small></small>
                </a></li>
        </ul>

        <div class="box-body" id="checkoutSteps">
            @guest
                <div id="checkout-method" class="checkoutStep">
                </div>
            @endguest
            <div id="cart-details" class="checkoutStep">
            </div>
            <div id="billing-shipping-address" class="checkoutStep">
            </div>
            @if($enable_shipping)
                <div id="shipping-method" class="checkoutStep">
                </div>
            @endif
            @if($hasPaymentStep)
                <div id="select-payment" class="checkoutStep">
                </div>
            @endif
            <div id="order-review" class="checkoutStep">
            </div>
        </div>
    </div>
@stop

@component('components.modal',['id'=>'term','header'=>\Settings::get('site_name').' Terms and policy'])
    {!! \Settings::get('terms_and_policy') !!}
@endcomponent

@section('js')
    @include('Marketplace::checkout.checkout_script')
@endsection

Spamworldpro Mini