![]() 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/ecommerce-ultimate/templates/ |
@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; } </style> @endsection @section('editable_content') @php \Actions::do_action('pre_content', null, null) @endphp <div class="container my-5" style="margin-bottom: 70px !important;"> <div id="checkoutWizard"> <ul> @guest <li><a href="#checkout-method" data-content-url="{{url('checkout/step/checkout-method')}}"> @lang('corals-ecommerce-ultimate::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-ecommerce-ultimate::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-ecommerce-ultimate::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-ecommerce-ultimate::labels.template.checkout.select_shipping')<br/> <small></small> </a></li> @endif <li><a href="#select-payment" data-content-url="{{url('checkout/step/select-payment')}}"> @lang('corals-ecommerce-ultimate::labels.template.checkout.select_payment')<br/> <small></small> </a></li> <li><a href="#order-review" data-content-url="{{url('checkout/step/order-review')}}"> @lang('corals-ecommerce-ultimate::labels.template.checkout.order_review')<br/> <small></small> </a></li> </ul> <div class="mt-3 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 <div id="select-payment" class="checkoutStep"> </div> <div id="order-review" class="checkoutStep"> </div> </div> </div> </div> @stop @section('after_content') @component('components.modal',['id'=>'terms','header'=>\Settings::get('site_name').' Terms and policy']) {!! \Settings::get('terms_and_policy') !!} @endcomponent @stop @section('js') @include('Ecommerce::checkout.checkout_script') @endsection