/home/techb158/ileadtechnology.com/resources/views/front
NameSizeModeActions
blog/-0755rm
certificate/-0755rm
coming_soon/-0755rm
error_page/-0755rm
help/-0755rm
purchase_history/-0755rm
quiz/-0755rm
user_profile/-0755rm
about.blade.php210240644editdlrm
batch_detail.blade.php104510644editdlrm
bbl_detail.blade.php59160644editdlrm
bundle_detail.blade.php205310644editdlrm
careers.blade.php150570644editdlrm
cart.blade.php160490644editdlrm
category.blade.php501240644editdlrm
checkout.blade.php498350644editdlrm
contact.blade.php58070644editdlrm
course_content.blade.php1045100644editdlrm
course_detail.blade.php1136730644editdlrm
instructor.blade.php117790644editdlrm
my_course.blade.php394250644editdlrm
search.blade.php95120644editdlrm
watchlist.blade.php77850644editdlrm
wishlist.blade.php113120644editdlrm
zoom_detail.blade.php31230644editdlrm
Edit: /home/techb158/ileadtechnology.com/resources/views/front/checkout.blade.php (49835B)
@extends('theme.master') @section('title', 'Checkout') @section('content') @include('admin.message')

{{ __('frontstaticword.Checkout') }}

{{ __('frontstaticword.YourItems') }} (@php $item = App\Cart::where('user_id', Auth::User()->id)->get(); if(count($item)>0){ echo count($item); } else{ echo "0"; } @endphp)


@foreach($carts as $cart)
@if($cart->course_id != NULL) @if($cart->courses['preview_image'] !== NULL && $cart->courses['preview_image'] !== '') course @else course @endif @else @if($cart->bundle['preview_image'] !== NULL && $cart->bundle['preview_image'] !== '') blog @else blog @endif @endif
@endforeach
  • {{ __('frontstaticword.Total') }}: {{ $cart_total }}

  • {{ $price_total }}
  • {{ round($offer_percent, 0) }}% Off
  • @php if($cart_total != '' || $cart_total != 0){ $mainpay = round($cart_total,2); }else{ $mainpay = round($cart_total,2); } @endphp
@php $secureamount = Crypt::encrypt($mainpay); @endphp
@if($cart->bundle['is_subscription_enabled'] == 1) @if($gsetting->stripe_enable == 1)
{{ csrf_field() }}
@endif @else @if($gsetting->stripe_enable == 1)
{{ csrf_field() }}
@endif @if($gsetting->paypal_enable == 1)
@csrf
@endif @if($gsetting->instamojo_enable == 1)
{{ csrf_field() }}
Name
Mobile Number
Email Id
@endif @if($gsetting->enable_omise == 1 && $currency->currency == 'THB')
@csrf
@endif @if($gsetting->razorpay_enable == 1)
@csrf {{-- --}} @php $set = App\Setting::first(); $currency = App\Currency::first(); @endphp
@endif @if($gsetting->paystack_enable == 1)
{{ csrf_field() }}

@endif @if($gsetting->paytm_enable == 1)
@csrf
Name
Mobile Number
Email Id
@endif @php $banktransfer = App\BankTransfer::first(); @endphp @if(isset($banktransfer)) @if($banktransfer->bank_enable == '1')
@csrf

({{ __('frontstaticword.PleaseDocument') }})

{{ __('frontstaticword.banktransferdetail') }}
@php $bankdetail = App\BankTransfer::first(); @endphp
  • {{ __('frontstaticword.Accountholdername') }}: {{ $bankdetail['account_holder_name'] }}
  • {{ __('frontstaticword.BankName') }}: {{ $bankdetail['bank_name'] }}
  • {{ __('frontstaticword.BankAcccountNumber') }}: {{ $bankdetail['account_number'] }}
  • @if(isset($bankdetail['ifcs_code']))
  • {{ __('frontstaticword.IFCSCode') }}: {{ $bankdetail['ifcs_code'] }}
  • @endif @if(isset($bankdetail['swift_code']))
  • {{ __('frontstaticword.SwiftCode') }}: {{ $bankdetail['swift_code'] }}
  • @endif
@endif @endif @if($gsetting->enable_payu == 1)
@csrf
@endif @if($gsetting->enable_cashfree == 1)
@csrf
@endif @if($gsetting->enable_moli == 1)
@csrf
@endif @if($gsetting->enable_skrill == 1)
@csrf
@endif @if($gsetting->enable_rave == 1)
@php $array = array(array('metaname' => 'color', 'metavalue' => 'blue'), array('metaname' => 'size', 'metavalue' => 'small')); $currency = App\Currency::first(); @endphp
{{ csrf_field() }}
@endif @php $order_id = uniqid(); @endphp @if($gsetting->enable_payhere == 1)
@if(env('PAYHERE_MODE') == 'sandbox') @php $action = 'https://sandbox.payhere.lk/pay/checkout'; @endphp @else @php $action = 'https://www.payhere.lk/pay/checkout'; @endphp @endif
@endif @php $conversation_id = uniqid(); @endphp @if($gsetting->iyzico_enable == 1)
@csrf
Email
Mobile Number
Identity number TCKN for Turkish merchants, passport number for foreign merchants
@endif @if($gsetting->ssl_enable == 1)
@csrf
@endif @php $manualpay = App\ManualPayment::where('status', '1')->get(); @endphp @foreach($manualpay as $manual)

@csrf

({{ __('frontstaticword.PleaseDocument') }})


{!! $manual->detail !!}
@if($manual->image != '' && file_exists(public_path().'/images/manualpayment/'.$manual->image) )
{{ $manual->image }}
@endif
@endforeach @endif
@endsection @section('custom-script') @endsection