@forelse($cart as $item) @empty @endforelse
Image Product Details Price Action
{{ $item->course->course_name }}

By {{ $item->course->user->name }},{{ $item->course->course_title }} & More!

  • ${{ $item->course->discount_price }}
  • ${{ $item->course->selling_price }}
No Data Found
@csrf @foreach ($cart as $item) @endforeach @if (!session()->get('coupon'))
@endif
Update Cart

Cart Totals

  • Subtotal: ${{ $subTotal }}
  • Total Discount: $0.00
  • @if (session()->get('coupon'))
  • Total Discount: ${{ session()->get('coupon') ?? '0.00' }}
  • @endif
  • Total: @if (session()->get('coupon')) ${{ $subTotal - session()->get('coupon') }} @else ${{ $subTotal }} @endif
Checkout