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

{{ get_phrase('All Bootcamps') }}

{{ get_phrase('Showing') . ' ' . count($bootcamps) . ' ' . get_phrase('of') . ' ' . $bootcamps->total() . ' ' . get_phrase('data') }}

@include('frontend.default.bootcamp.filter')
@foreach ($bootcamps as $bootcamp) @include('frontend.default.bootcamp.bootcamp_grid') @endforeach
@if (count($bootcamps) > 0)
@endif
@endsection @push('js')@endpush