@extends('frontend.master') @section('content') @include('frontend.section.breadcrumb', ['title' => 'Checkout'])
@csrf

Billing Details

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Select Payment Method

In order to complete your transaction, we will transfer you over to Stripe's secure servers.

In order to complete your transaction, we will transfer you over to PayPal's secure servers.

Order Details

@forelse($cart as $item)
Cart image
{{ $item->course->course_name_slug }}

${{ $item->course->discount_price ? $item->course->discount_price : $item->course->selling_price }}

@empty

No Cart Data Found !

@endforelse
Edit

Order Summary

  • Original price: ${{ $total }}
  • @if (session()->get('coupon'))
  • Coupon discounts: -${{ session()->get('coupon') }}
  • @endif
  • Total: ${{ $total - session()->get('coupon') }}

Aduca is required by law to collect applicable transaction taxes for purchases made in certain tax jurisdictions.

By completing your purchase you agree to these Terms of Service.

@endsection @push('scripts') @endpush