@extends('frontend.layouts.app'.config('theme_layout')) @section('title', trans('labels.frontend.cart.payment_status').' | '.app_name()) @push('after-styles') @endpush @section('content')
@lang('labels.frontend.cart.your_shopping_cart')

@lang('labels.frontend.cart.complete_your_purchases')

@lang('labels.frontend.cart.order_item')

@if(count($courses) > 0) @foreach($courses as $course) @endforeach @else @endif
@lang('labels.frontend.cart.product_name') @lang('labels.frontend.cart.product_type') @lang('labels.frontend.cart.starts')
course_image != "") style="background-image: url({{asset('storage/uploads/'.$course->course_image)}})" @endif >
{{class_basename($course)}}
{{($course->start_date != "") ? $course->start_date : 'N/A'}}
@lang('labels.frontend.cart.empty_cart')
@if(count($courses) > 0) @if((config('services.stripe.active') == 0) && (config('paypal.active') == 0) && (config('payment_offline_active') == 0))

@lang('labels.frontend.cart.no_payment_method')

@else

@lang('labels.frontend.cart.order_payment')

@if(config('services.stripe.active') == 1)
@csrf
@lang('labels.frontend.cart.stripe_error_message')
@endif @if(config('paypal.active') == 1)
{{ csrf_field() }}

@lang('labels.frontend.cart.pay_securely_paypal')

@endif @if(config('payment_offline_active') == 1)

@lang('labels.frontend.cart.offline_payment_note')

@csrf
@endif

@lang('labels.frontend.cart.confirmation_note')

@endif @endif
@if($global_featured_course != "") @endif
@endsection @push('after-scripts') @if(config('services.stripe.active') == 1) @endif @endpush