{{-- Installments --}} @if(!empty($installments) and count($installments) and getInstallmentsSettings('installment_plans_position') == 'top_of_page') @foreach($installments as $installmentRow) @include('web.default.installment.card',['installment' => $installmentRow, 'itemPrice' => $bundle->getPrice(), 'itemId' => $bundle->id, 'itemType' => 'bundles']) @endforeach @endif {{--course description--}} @if($bundle->description)

{{ trans('update.bundle_description') }}

{!! clean($bundle->description) !!}
@endif {{-- ./ course description--}} {{-- course FAQ --}} @if(!empty($bundle->faqs) and $bundle->faqs->count() > 0)

{{ trans('public.faq') }}

@foreach($bundle->faqs as $faq)
{{ clean($faq->answer,'answer') }}
@endforeach
@endif {{-- ./ course FAQ --}} {{-- Installments --}} @if(!empty($installments) and count($installments) and getInstallmentsSettings('installment_plans_position') == 'bottom_of_page') @foreach($installments as $installmentRow) @include('web.default.installment.card',['installment' => $installmentRow, 'itemPrice' => $bundle->getPrice(), 'itemId' => $bundle->id, 'itemType' => 'bundles']) @endforeach @endif {{-- course Comments --}} @include('web.default.includes.comments',[ 'comments' => $bundle->comments, 'inputName' => 'bundle_id', 'inputValue' => $bundle->id ]) {{-- ./ course Comments --}}