shell bypass 403

GrazzMean Shell

Uname: Linux peekpos.com 6.8.0-1060-aws #63~22.04.1-Ubuntu SMP Tue Jun 30 02:32:53 UTC 2026 x86_64
Software: Apache
PHP version: 8.3.25 [ PHP INFO ] PHP os: Linux
Server Ip: 47.130.192.226
Your Ip: 10.1.31.86
User: www (1001) | Group: www (1001)
Safe Mode: OFF
Disable Function:
passthru,putenv,chroot,chgrp,chown,shell_exec,popen,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv

name : checkout.blade.php
@extends('web.layout.default')
@section('page_title')
    | {{ trans('labels.checkout') }}
@endsection
@section('content')
    <div class="breadcrumb-sec">
        <div class="container">
            <div class="breadcrumb-sec-content">
                <nav class="text-dark d-flex breadcrumb-divider" aria-label="breadcrumb">
                    <ol class="breadcrumb">
                        <li
                            class="breadcrumb-item {{ session()->get('direction') == '2' ? 'breadcrumb-item-rtl ps-0' : '' }}">
                            <a class="text-dark" href="{{ URL::to('/') }}">{{ trans('labels.home') }}</a>
                        </li>
                        <li class="breadcrumb-item {{ session()->get('direction') == '2' ? 'breadcrumb-item-rtl ps-0' : '' }} text-primary fw-bold active"
                            aria-current="page">{{ trans('labels.checkout') }}</li>
                    </ol>
                </nav>
            </div>
        </div>
    </div>
    @if (count($getcartlist) > 0)
        @php
            $order_total = 0;
            $total_item_qty = 0;
        @endphp

        @foreach ($getcartlist as $item)
            @if ($item['extras_id'] != '')
                @php
                    $extras_id = explode('|', $item['extras_id']);
                    $extras_name = explode('|', $item['extras_name']);
                    $extras_price = explode('|', $item['extras_price']);
                    $extras_total_price = 0;
                @endphp
                @foreach ($extras_id as $key => $addons)
                    @php
                        $extras_total_price += $extras_price[$key];
                    @endphp
                @endforeach
            @else
                @php
                    $extras_total_price = 0;
                @endphp
            @endif
            @php
                $total_price = ($item['item_price'] + $item['addons_total_price'] + $extras_total_price) * $item['qty'];

                $order_total += (float) $total_price;
                $total_item_qty += $item['qty'];
            @endphp
        @endforeach
        <section class="my-4">
            <div class="container">
                <h3 class="fw-bold fs-2 mb-4 color-changer truncate-2">{{ trans('labels.checkout') }}</h3>
                @if (@helper::checkaddons('cart_checkout_countdown'))
                    @include('web.cart_checkout_countdown')
                @endif
                <div class="cart-view">
                    <div class="row g-3">
                        <div class="col-lg-8 order-md2">
                            @if ($getsettings->pickup_delivery == 1)
                                <div class="card mb-3 address-view">
                                    <div class="card-body">
                                        <div class="heading mb-3 border-bottom">
                                            <h2 class="color-changer">{{ trans('labels.order_type') }}</h2>
                                        </div>
                                        <div class="order-option gap-3">
                                            <div class="col-12 d-flex gap-3">
                                                <div class="form-check form-check-inline mb-0">
                                                    <input class="form-check-input" type="radio" name="order_type"
                                                        value="1" checked id="delivery">
                                                    <label class="form-check-label fs-7 fw-500" for="delivery">
                                                        {{ trans('labels.delivery') }}
                                                    </label>
                                                </div>
                                                <div class="form-check form-check-inline mb-0">
                                                    <input class="form-check-input" type="radio" name="order_type"
                                                        value="2"
                                                        {{ session()->get('order_type') == 2 ? 'checked' : '' }}
                                                        id="pickup">
                                                    <label class="form-check-label fs-7 fw-500" for="pickup">
                                                        {{ trans('labels.take_away') }}
                                                    </label>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            @elseif($getsettings->pickup_delivery == 2)
                                <input type="radio" name="order_type" class="d-none" value="1" checked
                                    id="delivery">
                            @elseif($getsettings->pickup_delivery == 3)
                                <input type="radio" name="order_type" class="d-none" value="2" checked
                                    id="pickup">
                            @endif
                            @if (helper::appdata()->ordertype_date_time == 1)
                                <div class="card mb-3 date-view">
                                    <div class="card-body">
                                        <div class="heading mb-3 border-bottom">
                                            <h2 class="color-changer">{{ trans('labels.date_time') }}</h2>
                                        </div>
                                        <div>
                                            <div class="row g-3">
                                                <div
                                                    class="col-sm-6 delivery-date {{ session()->get('direction') == '2' ? 'text-right' : '' }}">
                                                    <label id="delivery_date"
                                                        class="form-label justify-content-start fw-semibold">{{ trans('labels.delivery_date') }}</label>
                                                    <label id="pickup_date" class="form-label fw-semibold d-none">
                                                        {{ trans('labels.pickup_date') }}</label>
                                                    <input type="text"
                                                        class="form-control rounded-2 p-3 delivery_pickup_date"
                                                        name="delivery_date" value="{{ old('delivery_date') }}"
                                                        id="delivery_dt">
                                                </div>
                                                <div
                                                    class="col-sm-6 delivery-time {{ session()->get('direction') == '2' ? 'text-right' : '' }}">
                                                    <label id="delivery_time"
                                                        class="form-label justify-content-start fw-semibold">{{ trans('labels.delivery_time') }}</label>
                                                    <label id="pickup_time"
                                                        class="form-label justify-content-start fw-semibold d-none">{{ trans('labels.pickup_time') }}</label>
                                                    <label id="store_close"
                                                        class="d-none form-label text-danger label14">{{ trans('messages.store_closed') }}</label>
                                                    <select name="delivery_time" id="select_delivery_time"
                                                        class="form-select rounded-2 py-3">
                                                        <option value="{{ old('delivery_time') }}">
                                                            {{ trans('labels.select') }}
                                                        </option>
                                                    </select>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            @endif
                            <div class="card mb-3 Info-view" id="customerinfodiv">
                                <div class="card-body">
                                    <div class="heading mb-3 border-bottom">
                                        <h2 class="color-changer">{{ trans('labels.customer_info') }}</h2>
                                    </div>
                                    <div class="row g-3">
                                        <div class="col-md-6">
                                            <label for="first_name"
                                                class="form-label">{{ trans('labels.first_name') }}</label>
                                            <input type="text" class="form-control" name="first_name" id="first_name"
                                                placeholder="{{ trans('labels.first_name') }}"
                                                value="{{ Auth::user() && Auth::user()->type == 2 ? Auth::user()->name : old('first_name') }}"
                                                required>
                                        </div>
                                        <div class="col-md-6">
                                            <label for="last_name"
                                                class="form-label">{{ trans('labels.last_name') }}</label>
                                            <input type="text" class="form-control" name="last_name" id="last_name"
                                                placeholder="{{ trans('labels.last_name') }}"
                                                value="{{ old('last_name') }}" required>
                                        </div>
                                        <div class="col-md-6">
                                            <label for="email" class="form-label">{{ trans('labels.email') }}</label>
                                            <input type="text" class="form-control" name="email" id="email"
                                                placeholder="{{ trans('labels.email') }}"
                                                value="{{ Auth::user() && Auth::user()->type == 2 ? Auth::user()->email : old('email') }}"
                                                required>
                                        </div>
                                        <div class="col-md-6">
                                            <label for="mobile" class="form-label">{{ trans('labels.mobile') }}</label>
                                            <input type="text" class="form-control numbers_only" name="mobile"
                                                id="mobile" placeholder="{{ trans('labels.mobile') }}"
                                                value="{{ Auth::user() && Auth::user()->type == 2 ? Auth::user()->mobile : old('mobile') }}"
                                                required>
                                        </div>
                                    </div>
                                </div>
                            </div>

                            <div class="card mb-3 Delivery-view" id="addressdiv">
                                <div class="card-body">
                                    <div
                                        class="d-flex justify-content-between align-items-center heading mb-3 border-bottom">
                                        <h2 class="color-changer">{{ trans('labels.delivery_address') }}</h2>
                                    </div>
                                    <div class="row g-3">
                                        @if (Auth::user() && Auth::user()->type == 2)

                                            <div class="col-9">
                                                @if ($getaddresses->count() > 0)
                                                    <label class="form-label">{{ trans('labels.select_address') }}</label>
                                                    <select name="address_type" id="address_type" class="form-select">
                                                        @foreach ($getaddresses as $address)
                                                            <option value="{{ $address->id }}"
                                                                {{ $address->is_default == 1 ? 'selected' : '' }}>
                                                                {{ $address->title }}</option>
                                                        @endforeach
                                                    </select>
                                                @endif
                                            </div>
                                            <div class="col-3 py-4">
                                                <a href="{{ URL::to('/address') }}" type="button"
                                                    class="btn btn-address mt-2 w-100"><i
                                                        class="fa-solid fa-plus mx-1"></i>{{ trans('labels.add_address') }}</a>
                                            </div>
                                        @endif
                                        <div class="col-12">
                                            <label for="address"
                                                class="form-label">{{ trans('labels.address') }}</label>
                                            <textarea name="address" id="new_address" class="form-control mb-0" rows="6"
                                                placeholder="{{ trans('labels.address') }}" required>{{ old('address') }}</textarea>
                                        </div>
                                        <div class="col-md-6">
                                            <label for="country"
                                                class="form-label">{{ trans('labels.country') }}</label>
                                            <input type="text" class="form-control" name="country" id="new_country"
                                                placeholder="{{ trans('labels.country') }}"
                                                value="{{ old('country') }}">
                                        </div>
                                        <div class="col-md-6">
                                            <label for="city" class="form-label">{{ trans('labels.city') }}</label>
                                            <input type="text" class="form-control" name="city" id="new_city"
                                                placeholder="{{ trans('labels.city') }}" value="{{ old('city') }}">
                                        </div>
                                        <div class="col-md-6">
                                            <label for="state" class="form-label">{{ trans('labels.state') }}</label>
                                            <input type="text" class="form-control" name="state" id="new_state"
                                                placeholder="{{ trans('labels.state') }}" value="{{ old('state') }}">
                                        </div>
                                        <div class="col-md-6">
                                            <label for="landmark"
                                                class="form-label">{{ trans('labels.landmark') }}</label>
                                            <input type="text" class="form-control" name="landmark" id="new_landmark"
                                                placeholder="{{ trans('labels.landmark') }}"
                                                value="{{ old('landmark') }}">
                                        </div>
                                        <div class="col-md-6">
                                            <label for="pincode"
                                                class="form-label">{{ trans('labels.pincode') }}</label>
                                            <input type="text" class="form-control" name="pincode" id="new_pincode"
                                                placeholder="{{ trans('labels.pincode') }}" value="{{ old('pincode') }}"
                                                required>
                                        </div>
                                    </div>
                                </div>
                            </div>

                            @if (@helper::checkaddons('vendor_tip'))
                                @if (@helper::otherappdata()->tips_settings == 1)
                                    <div class="card mb-3 Delivery-view">
                                        <div class="card-body">
                                            <div class="heading mb-3 border-bottom">
                                                <h2 class="color-changer">{{ trans('labels.tips_pro') }}</h2>
                                            </div>
                                            <div class="row">
                                                <div class="col-md-12">
                                                    <div class="form-group m-0">
                                                        <label for="add_amount"
                                                            class="form-label">{{ trans('labels.add_amount') }}</label>
                                                        <input type="text" class="form-control numbers_only"
                                                            id="add_amount"
                                                            placeholder="{{ trans('labels.add_amount') }} . . . .">
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                @endif
                            @endif

                            <div class="card payment-option mb-3 border">
                                <div class="heading mb-4 border-bottom">
                                    <h2 class="color-changer">{{ trans('labels.choose_payment') }}</h2>
                                </div>
                                {{-- payment-options --}}
                                @include('web.paymentmethodsview')
                                <div class="row g-3 justify-content-between mt-4 align-items-center">
                                    <div class="align-items-center col-sm-6 col-12">
                                        <a href="{{ URL::to('/') }}" class="btn btn-outline-primary w-100">
                                            <i
                                                class="fa-solid fa-circle-arrow-left {{ session()->get('direction') == '2' ? 'ms-2' : 'me-2' }}"></i>{{ trans('labels.continue_shopping') }}</a>
                                    </div>
                                    <div class="align-items-center col-sm-6 col-12">
                                        <button
                                            class="btn btn-primary w-100 d-flex gap-3 justify-content-center align-items-center checkout"
                                            onclick="isopenclose('{{ URL::to('/isopenclose') }}','{{ $total_item_qty }}','{{ $order_total }}')">{{ trans('labels.proceed_pay') }}
                                            <div class="loader d-none checkout_loader"></div>
                                        </button>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 order-md1">
                            {{-- Promocode --}}
                            <div class="promocode mb-3 py-4 card">
                                <div class="d-flex pb-2 border-bottom justify-content-between align-items-center mb-3">
                                    <div class="col-auto">
                                        <label for="offer_code" class="color-changer">{{ trans('labels.apply_promo') }}</label>
                                    </div>
                                </div>
                                <div class="row justify-content-between align-items-center">
                                    <div class="d-flex">
                                        <input type="text" class="form-control" name="offer_code"
                                            value="{{ @Session::get('discount_data')['offer_code'] }}" id="offer_code"
                                            placeholder="{{ trans('labels.have_promocode') }}" readonly>
                                        <button
                                            class="btn btn-primary border-0 mb-0 px-sm-4 px-2 py-2 d-flex gap-3 justify-content-center align-items-center {{ session()->get('direction') == '2' ? 'me-2' : 'ms-2' }} d-none"
                                            id="btnremove" onclick="RemoveCoupon()">{{ trans('labels.remove') }}
                                            <div class="loader d-none" id="remove_code_loader"></div>
                                        </button>

                                        <button
                                            class="btn btn-primary border-0 mb-0 px-sm-4 px-2 py-2 d-flex gap-3 justify-content-center align-items-center {{ session()->get('direction') == '2' ? 'me-2' : 'ms-2' }} d-block"
                                            id="btnapply" onclick="ApplyCoupon()">{{ trans('labels.apply') }}
                                            <div class="loader d-none" id="apply_code_loader"></div>
                                        </button>
                                    </div>
                                </div>
                            </div>

                            {{-- Shipping Area --}}
                            @if (@helper::checkaddons('shipping_area'))
                                @if (helper::appdata()->shipping_area == 1)
                                    @if (count($allshippingarea) > 0)
                                        <div class="promocode mb-3 py-4 card" id="shippinginfodiv">
                                            <div
                                                class="d-flex pb-2 border-bottom justify-content-between align-items-center mb-3">
                                                <div class="col-auto">
                                                    <label for="shipping_area" class="color-changer">{{ trans('labels.shipping_area') }}</label>
                                                </div>
                                            </div>
                                            <div class="row justify-content-between align-items-center">
                                                <div class="d-flex">
                                                    <select name="shipping_area" id="shipping_area" class="form-select">
                                                        <option value="" selected disabled>
                                                            {{ trans('labels.select') }}
                                                        </option>
                                                        @foreach ($allshippingarea as $shippingarea)
                                                            <option value="{{ $shippingarea->id }}"
                                                                data-delivery-charge="{{ $shippingarea->delivery_charge }}"
                                                                data-area-name="{{ $shippingarea->area_name }}">
                                                                {{ $shippingarea->area_name }}
                                                                @if (helper::appdata()->min_order_amount_for_free_shipping > $order_total)
                                                                    @if ($shippingarea->delivery_charge > 0)
                                                                        {{ trans('labels.delivery_charge') }} :
                                                                        {{ helper::currency_format($shippingarea->delivery_charge) }}
                                                                    @endif
                                                                @else
                                                                    {{ trans('labels.free_delivery') }}
                                                                @endif
                                                            </option>
                                                        @endforeach
                                                    </select>
                                                </div>
                                            </div>
                                        </div>
                                    @endif
                                @endif
                            @endif

                            {{-- payment-summary --}}
                            <div class="summary py-3 mb-3 border card">
                                <h2 class="border-bottom color-changer">{{ trans('labels.payment_summary') }}</h2>
                                <div class="bill-details border-bottom pb-2">
                                    <div class="row justify-content-between align-items-center">
                                        <div class="col-auto">
                                            <span class="fw-500 fs-7 color-changer">{{ trans('labels.subtotal') }}</span>
                                        </div>
                                        <div class="col-auto">
                                            <p class="fw-500 fs-7 color-changer">{{ helper::currency_format($order_total) }}</p>
                                        </div>
                                    </div>
                                    @php
                                        if (session()->has('discount_data')) {
                                            $discount_amount = session()->get('discount_data')['offer_amount'];
                                        } else {
                                            $discount_amount = 0;
                                        }
                                    @endphp
                                    <div class="row justify-content-between align-items-center d-none"
                                        id="discount_section_display">
                                        <div class="col-auto">
                                            <span class="fw-500 fs-7 color-changer">{{ trans('labels.discount') }}</span>
                                        </div>
                                        <div class="col-auto">
                                            <p class="fw-500 fs-7 color-changer" id="offer_amount">-
                                                {{ helper::currency_format($discount_amount) }}
                                            </p>
                                        </div>
                                    </div>

                                    @php
                                        $totalcarttax = 0;
                                    @endphp
                                    @foreach ($taxArr['tax'] as $k => $tax)
                                        @php
                                            $rate = $taxArr['rate'][$k];
                                            $totalcarttax += (float) $taxArr['rate'][$k];
                                        @endphp
                                        <div class="row justify-content-between align-items-center">
                                            <div class="col-auto"><span class="fw-500 fs-7 color-changer">{{ $tax }}</span>
                                            </div>
                                            <div class="col-auto">
                                                <p class="fw-500 fs-7 color-changer"> {{ helper::currency_format($rate) }}</p>
                                            </div>
                                        </div>
                                    @endforeach
                                    <div class="row justify-content-between align-items-center" id="delivery_charge">
                                        <div class="col-auto"><span
                                                class="fw-500 fs-7 color-changer">{{ trans('labels.delivery') }}</span>
                                        </div>
                                        <div class="col-auto">
                                            @if (@helper::checkaddons('shipping_area'))
                                                @if (helper::appdata()->shipping_area == 1)
                                                    @if (count($allshippingarea) > 0)
                                                        @php
                                                            $grand_total =
                                                                $order_total - $discount_amount + $totalcarttax;
                                                        @endphp
                                                        @if ($order_total >= helper::appdata()->min_order_amount_for_free_shipping)
                                                            <input type="hidden" name="shipping_charge"
                                                                id="shipping_charge" value="0">
                                                            <p class="fw-500 fs-7 color-changer">
                                                                {{ trans('labels.free') }}
                                                            </p>
                                                        @else
                                                            <input type="hidden" name="shipping_charge"
                                                                id="shipping_charge" value="0">
                                                            <p class="fw-500 fs-7 color-changer" id="delivery_amount">
                                                                {{ helper::currency_format(0) }}
                                                            </p>
                                                        @endif
                                                    @else
                                                        @if ($order_total >= helper::appdata()->min_order_amount_for_free_shipping)
                                                            @php
                                                                $grand_total =
                                                                    $order_total - $discount_amount + $totalcarttax;
                                                            @endphp
                                                            <input type="hidden" name="shipping_charge"
                                                                id="shipping_charge" value="0">
                                                            <p class="fw-500 fs-7 color-changer">
                                                                {{ trans('labels.free') }}
                                                            </p>
                                                        @else
                                                            @php
                                                                $grand_total =
                                                                    $order_total -
                                                                    $discount_amount +
                                                                    $totalcarttax +
                                                                    helper::appdata()->shipping_charges;
                                                            @endphp
                                                            <input type="hidden" name="shipping_charge"
                                                                id="shipping_charge"
                                                                value="{{ helper::appdata()->shipping_charges }}">
                                                            <p class="fw-500 fs-7 color-changer" id="delivery_amount">
                                                                {{ helper::currency_format(helper::appdata()->shipping_charges) }}
                                                            </p>
                                                        @endif
                                                    @endif
                                                @else
                                                    @if ($order_total >= helper::appdata()->min_order_amount_for_free_shipping)
                                                        @php
                                                            $grand_total =
                                                                $order_total - $discount_amount + $totalcarttax;
                                                        @endphp
                                                        <input type="hidden" name="shipping_charge" id="shipping_charge"
                                                            value="0">
                                                        <p class="fw-500 fs-7 color-changer">
                                                            {{ trans('labels.free') }}
                                                        </p>
                                                    @else
                                                        @php
                                                            $grand_total =
                                                                $order_total -
                                                                $discount_amount +
                                                                $totalcarttax +
                                                                helper::appdata()->shipping_charges;
                                                        @endphp
                                                        <input type="hidden" name="shipping_charge" id="shipping_charge"
                                                            value="{{ helper::appdata()->shipping_charges }}">
                                                        <p class="fw-500 fs-7 color-changer" id="delivery_amount">
                                                            {{ helper::currency_format(helper::appdata()->shipping_charges) }}
                                                        </p>
                                                    @endif
                                                @endif
                                            @else
                                                @if ($order_total >= helper::appdata()->min_order_amount_for_free_shipping)
                                                    @php
                                                        $grand_total = $order_total - $discount_amount + $totalcarttax;
                                                    @endphp
                                                    <input type="hidden" name="shipping_charge" id="shipping_charge"
                                                        value="0">
                                                    <p class="fw-500 fs-7 color-changer">
                                                        {{ trans('labels.free') }}
                                                    </p>
                                                @else
                                                    @php
                                                        $grand_total =
                                                            $order_total -
                                                            $discount_amount +
                                                            $totalcarttax +
                                                            helper::appdata()->shipping_charges;
                                                    @endphp
                                                    <input type="hidden" name="shipping_charge" id="shipping_charge"
                                                        value="{{ helper::appdata()->shipping_charges }}">
                                                    <p class="fw-500 fs-7 color-changer" id="delivery_amount">
                                                        {{ helper::currency_format(helper::appdata()->shipping_charges) }}
                                                    </p>
                                                @endif
                                            @endif
                                        </div>
                                    </div>

                                </div>
                                {{-- @dd( helper::currency_format($grand_total) ) --}}
                                <div class="bill-total mt-2">
                                    <div class="row justify-content-between align-items-center">
                                        <div class="col-auto"><span class="text-success">{{ trans('labels.grand_total') }}</span></div>
                                        <div class="col-auto"><span class="grand_total text-success"
                                                id="total_amount">{{ helper::currency_format($grand_total) }}</span>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            {{-- special-instruction --}}
                            <div class="special-instruction card mb-3 border">
                                <label class="form-label mb-3 color-changer border-bottom pb-2 w-100"
                                    for="order_notes">{{ trans('labels.special_instruction') }}</label>
                                <textarea class="form-control mb-0" name="order_notes" id="order_notes" rows="3"
                                    placeholder="{{ trans('labels.special_instruction') }}"></textarea>
                            </div>
                            @include('web.sevirce-trusted')
                        </div>
                    </div>
                </div>
                <input type="hidden" name="user_id" id="user_id" value="{{ @Auth::user()->id }}">
                <input type="hidden" name="session_id" id="session_id" value="{{ @Session::getId() }}">
                <input type="hidden" name="order_type" id="order_type" value="{{ session()->get('order_type') }}">
                <input type="hidden" name="grand_total" id="grand_total" value="{{ $grand_total }}">
                <input type="hidden" name="sub_total" id="sub_total" value="{{ $order_total }}">
                <input type="hidden" name="discount" id="discount" value="{{ @$discount_amount }}">
                <input type="hidden" name="totaltaxamount" id="totaltaxamount" value="{{ $totalcarttax }}">
                <input type="hidden" name="tax" id="tax" value="{{ implode('|', $taxArr['rate']) }}">
                <input type="hidden" name="tax_name" id="tax_name" value="{{ implode('|', $taxArr['tax']) }}">
                <input type="hidden" name="user_name" id="user_name" value="{{ @Auth::user()->name }}">
                <input type="hidden" name="user_email" id="user_email" value="{{ @Auth::user()->email }}">
                <input type="hidden" name="user_mobile" id="user_mobile" value="{{ @Auth::user()->mobile }}">
                <input type="hidden" name="buynow" id="buynow" value="{{ request()->get('buynow') }}">


                <input type="hidden" name="orderurl" id="orderurl" value="{{ URL::to('placeorder') }}">
                <input type="hidden" name="paymentsuccess" id="paymentsuccess"
                    value="{{ URL::to('/paymentsuccess') }}">
                <input type="hidden" name="paymentfail" id="paymentfail" value="{{ URL::to('/paymentfail') }}">
                <input type="hidden" name="successurl" id="successurl" value="{{ URL::to('/orders') }}">
                <input type="hidden" name="continueurl" id="continueurl" value="{{ URL::to('/') }}">
                <input type="hidden" name="environment" id="environment" value="{{ env('Environment') }}">
                <input type="hidden" name="myfatoorahurl" id="myfatoorahurl" value="{{ URL::to('/myfatoorah') }}">
                <input type="hidden" name="mercadopagourl" id="mercadopagourl"
                    value="{{ URL::to('/mercadorequest') }}">
                <input type="hidden" name="paypalurl" id="paypalurl" value="{{ URL::to('/paypal') }}">
                <input type="hidden" name="toyyibpayurl" id="toyyibpayurl" value="{{ URL::to('/toyyibpay') }}">
                <input type="hidden" name="paytaburl" id="paytaburl" value="{{ URL::to('/paytab') }}">
                <input type="hidden" name="phonepeurl" id="phonepeurl" value="{{ URL::to('/phonepe') }}">
                <input type="hidden" name="mollieurl" id="mollieurl" value="{{ URL::to('/mollie') }}">
                <input type="hidden" name="khaltiurl" id="khaltiurl" value="{{ URL::to('/khalti') }}">
                <input type="hidden" name="xenditurl" id="xenditurl" value="{{ URL::to('/xendit') }}">

                <input type="hidden" name="authuser" id="authuser"
                    value="{{ Auth::user() && Auth::user()->type == 2 ? 1 : 2 }}">
                <input type="hidden" name="sloturl" id="sloturl" value="{{ URL::to('/timeslot') }}">
                <input type="hidden" value="{{ URL::to('getaddress') }}" name="getaddress" id="getaddress">

                <form action="{{ URL::to('paypal') }}" method="post" class="d-none">
                    {{ csrf_field() }}
                    <input type="hidden" name="return" value="2">
                    <input type="submit" class="callpaypal" name="submit">
                </form>

                <input type="hidden" value="{{ trans('messages.delivery_date_required') }}"
                    name="delivery_date_message" id="delivery_date_message">
                <input type="hidden" value="{{ trans('messages.delivery_time_required') }}"
                    name="delivery_time_message" id="delivery_time_message">
                <input type="hidden" value="{{ trans('messages.pickup_date_required') }}" name="pickup_date_message"
                    id="pickup_date_message">
                <input type="hidden" value="{{ trans('messages.pickup_time_required') }}" name="pickup_time_message"
                    id="pickup_time_message">
                <input type="hidden" value="{{ trans('messages.first_name_required') }}" name="first_name_message"
                    id="first_name_message">
                <input type="hidden" value="{{ trans('messages.last_name_required') }}" name="last_name_message"
                    id="last_name_message">
                <input type="hidden" value="{{ trans('messages.email_required') }}" name="email_message"
                    id="email_message">
                <input type="hidden" value="{{ trans('messages.mobile_required') }}" name="mobile_message"
                    id="mobile_message">
                <input type="hidden" value="{{ trans('messages.address_required') }}" name="new_address_message"
                    id="new_address_message">
                <input type="hidden" value="{{ trans('messages.landmark_required') }}" name="new_landmark_message"
                    id="new_landmark_message">
                <input type="hidden" value="{{ trans('messages.pincode_required') }}" name="new_pincode_message"
                    id="new_pincode_message">
                <input type="hidden" value="{{ trans('messages.country_required') }}" name="new_country_message"
                    id="new_country_message">
                <input type="hidden" value="{{ trans('messages.state_required') }}" name="new_state_message"
                    id="new_state_message">
                <input type="hidden" value="{{ trans('messages.city_required') }}" name="new_city_message"
                    id="new_city_message">
                <input type="hidden" value="{{ trans('messages.payment_selection_required') }}"
                    name="payment_type_message" id="payment_type_message">
                <input type="hidden" value="{{ trans('messages.shipping_area_selection_required') }}"
                    name="shipping_area_message" id="shipping_area_message">
            </div>
        </section>
    @else
        @include('web.nodata')
    @endif

@endsection
@section('scripts')
    <script src="https://checkout.stripe.com/v2/checkout.js"></script>
    <script src="https://js.stripe.com/v3/"></script>
    <script src="https://checkout.razorpay.com/v1/checkout.js"></script>
    <script src="https://checkout.flutterwave.com/v3.js"></script>
    <script src="https://js.paystack.co/v1/inline.js"></script>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
    <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
    <script>
        var select = "{{ trans('labels.select') }}";
        var stripeaddon = "{{ @helper::checkaddons('stripe') }}";
        var min_order_amount_for_free_shipping = "{{ helper::appdata()->min_order_amount_for_free_shipping }}";

        $(document).ready(function() {
            if ("{{ Session::has('discount_data') }}") {
                $('#discount_section_display').removeClass('d-none');
                $('#btnremove').removeClass('d-none');
                $('#btnapply').addClass('d-none');
            } else {
                $('#discount_section_display').addClass('d-none');
                $('#btnremove').addClass('d-none');
                $('#btnapply').removeClass('d-none');
            }
        });

        function ApplyCoupon() {
            $('#btnapply').prop("disabled", true);
            $('#apply_code_loader').removeClass('d-none');
            $.ajax({
                headers: {
                    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                },
                url: "{{ URL::to('/promocodes/apply') }}",
                method: 'post',
                data: {
                    offer_code: $('#offer_code').val(),
                    sub_total: $('#sub_total').val()
                },
                success: function(response) {
                    $('#btnapply').prop("disabled", false);
                    $('#apply_code_loader').addClass('d-none');
                    if (response.status == 1) {
                        var total = parseFloat($('#sub_total').val());
                        var tax = "{{ @$totalcarttax }}";
                        var delivery_charge = parseFloat($('#shipping_charge').val());
                        var grandtotal = parseFloat(total) + parseFloat(tax) + parseFloat(delivery_charge) -
                            parseFloat(response.data.offer_amount);
                        $('#offer_amount').text('-' + currency_format(parseFloat(response.data.offer_amount)));
                        $('#total_amount').text(currency_format(parseFloat(grandtotal)));
                        $('#grand_total').val(grandtotal);
                        $('#discount').val(response.data.offer_amount);
                        $('#offer_code').val(response.data.offer_code);
                        $('#discount_section_display').removeClass('d-none');
                        $('#btnremove').removeClass('d-none');
                        $('#btnapply').addClass('d-none');
                    } else {
                        toastr.error(response.message);
                    }
                }
            });
        }

        function RemoveCoupon() {
            $('#btnremove').prop("disabled", true);
            $('#remove_code_loader').removeClass('d-none');
            setTimeout(function() {
                $('#remove_code_loader').addClass('d-none');
                $('#btnremove').prop("disabled", false);
            }, 3000);
            $.ajax({
                headers: {
                    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                },
                url: "{{ URL::to('/promocodes/remove') }}",
                method: 'post',
                data: {
                    offer_code: $('#offer_code').val()
                },
                success: function(response) {
                    if (response.status == 1) {
                        var total = $('#sub_total').val();
                        var tax = "{{ @$totalcarttax }}";
                        var delivery_charge = $('#shipping_charge').val();
                        var discount = 0;
                        var grandtotal = parseFloat(total) + parseFloat(tax) + parseFloat(delivery_charge) -
                            parseFloat(discount);
                        $('#offer_amount').text('-' + currency_format(parseFloat(0)));
                        $('#total_amount').text(currency_format(parseFloat(grandtotal)));
                        $('#offer_code').val('');
                        $('#grand_total').val(grandtotal);
                        $('#discount').val(discount);
                        $('#discount_section_display').addClass('d-none');
                        $('#btnremove').addClass('d-none');
                        $('#btnapply').removeClass('d-none');
                    } else {
                        toastr.error(response.message);
                    }
                }
            });
        }

        @if (helper::appdata()->ordertype_date_time == 1)
            var dateFormat = "{{ helper::appdata()->date_format }}";
            var placeholderFormat = dateFormat
                .replace(/Y/g, 'yyyy') // Full year
                .replace(/m/g, 'mm') // Month
                .replace(/d/g, 'dd'); // Day

            document.getElementById("delivery_dt").setAttribute("placeholder", placeholderFormat);

            flatpickr(".delivery_pickup_date", {
                dateFormat: dateFormat,
                enableTime: false,
                altInput: true,
                altFormat: dateFormat,
                minDate: 'today'
            });
        @endif
    </script>
    <script src="{{ url(env('ASSETSPATHURL') . 'web-assets/js/custom/checkout.js') }}"></script>
@endsection
© 2026 GrazzMean