• {{ count($cart) }}

    @if($cart->count() > 0)
      @foreach($cart as $item)
    • {{ $item->course->course_title }}
      {{ $item->course->course_title }}
      {{ $item->course->user->name }}

      ${{ number_format($item->course->discount_price, 2) }} @if($item->course->selling_price > $item->course->discount_price) ${{ number_format($item->course->selling_price, 2) }} @endif

    • @endforeach
    • Total: ${{$subTotal}}

    • Go to checkout
    @endif