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-pro/templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

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

@section('css')
    <style type="text/css">
        .sw-theme-arrows > ul.step-anchor {
            display: flex !important;
        }

        .shipping-options label {
            padding-left: 0;
            display: block;
        }

        .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;
        }

        .product-title > a {
            font-size: 12px;
        }

        .col-md-12 > h4 {
            font-size: 15px;
        }

        .pull-right > button {
            color: #000000 !important;
        }

        .facebook-btn {
            background-color: rgb(59, 89, 152);
            color: #FFFFFF;
        }

        .twitter-btn {
            background-color: rgb(85, 172, 238);
            color: #FFFFFF;
        }

        .google-btn {
            background-color: rgb(221, 75, 57);
            color: #FFFFFF;
        }

        h3 {
            margin-bottom: 15px;
        }

    </style>
@endsection

@section('content')
    @php \Actions::do_action('pre_content', null, null) @endphp

    <div class="container my-5">
        <div id="checkoutWizard">
            <ul>
                @guest
                    <li><a href="#checkout-method"
                           data-content-url="{{url('checkout/step/checkout-method')}}">
                            @lang('corals-marketplace-pro::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-pro::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-pro::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-pro::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-pro::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-pro::labels.template.checkout.order_review')<br/>
                        <small></small>
                    </a></li>
            </ul>

            <div class="mt-3 m-t-10 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>
    </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