@if(count($course->keyPoints) > 0)

{{ __('What you will learn') }}

    @foreach(@$course->keyPoints as $key => $point) @if($key % 2 == 0)
  • {{ $point->name }}

  • @endif @endforeach
    @foreach(@$course->keyPoints as $key=> $point) @if($key % 2 == 1)
  • {{ $point->name }}

  • @endif @endforeach
@endif

{{ $course->description }}