@extends('layouts.app') @section('content')
1

অর্ডার কনফার্মেশন

2

পেমেন্ট

course-thumbnail

MERN Stack Web Development Career Path

৳ {{$course->original_price}} ৳ {{$course->discounted_price}}

{{ $course->short_description }}

{{ $course->total_enroll }} {{ __('text.class') }}
{{ $course->total_enroll }} {{ __('text.enrolled') }}

গুরুত্বপূর্ণ তথ্য

ক্রয়ের সঙ্গে সঙ্গে কোর্সটি ব্যবহার শুরু করতে পারবেন

@csrf

{{ __('menu.course_fee') }}

৳{{ (int) $course->original_price }}

{{ __('menu.course_discount') }}

-৳{{ (int) $course->original_price - $course->discounted_price }}

@if ($discountAmount != 0)

{{ __('menu.coupon_discount') }}

-৳{{ (int) $discountAmount }}

@endif

{{ __('menu.total') }} ({{ __('menu.vat_included') }})

৳{{ $discountAmount == 0 ? (int) $course->discounted_price : (int) ($course->discounted_price - $discountAmount) }}

{{ __('menu.select_payment_method') }}
{{ __('menu.secure_payment') }}
@foreach ($gateways as $gateway) @endforeach
{{-- Mobile Device --}}
@php $courseDiscount = (int) ($course->original_price - $course->discounted_price); @endphp @if ($courseDiscount > 0)
{{ __('menu.course_discount') }}: ৳{{ $courseDiscount }}
@endif @if ($discountAmount > 0)
{{ __('menu.coupon_discount') }}: ৳{{ (int) $discountAmount }}
@endif
৳{{ $discountAmount == 0 ? (int) $course->discounted_price : (int) ($course->discounted_price - $discountAmount) }}
নিরাপদ পেমেন্ট | ২৫৬-বিট SSL এনক্রিপশন
@endsection