@extends('layouts.default') @push('title', get_phrase('Bootcamp Details')) @push('meta')@endpush @push('css')@endpush @section('content')

{{ $bootcamp_details->title }}

{{ $bootcamp_details->short_description }}

@php $user = get_user_info($bootcamp_details->user_id); @endphp
  • {{ $count_modules = count_bootcamp_modules($bootcamp_details->id) }} {{ get_phrase($count_modules > 1 ? 'Modules' : 'Module') }}
  • {{ $count_modules = count_bootcamp_classes($bootcamp_details->id) }} {{ get_phrase($count_modules > 1 ? 'Classes' : 'Class') }}
  • ... {{ total_enroll($bootcamp_details->id) }} {{ get_phrase('Students') }}
...
@include('frontend.default.bootcamp.overview_area') @include('frontend.default.bootcamp.content_area') @include('frontend.default.bootcamp.faq_area') @include('frontend.default.bootcamp.requirement_outcome_area') @include('frontend.default.bootcamp.instructor_area')
@include('frontend.default.bootcamp.pricing_card')
@endsection @push('js') @endpush