@extends('layouts.admin') @push('title', get_phrase('Bootcamp Category')) @section('content')

{{ get_phrase('Bootcamp Category') }}

{{ get_phrase('Add new category') }}
@if ($categories->count() > 0)
@foreach ($categories as $category)

{{ $category->title }}

{{ get_phrase('Total bootcamps') }} {{ count_bootcamps_by_category($category->id) }}

@endforeach

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

{{ $categories->links() }}
@else
@include('admin.no_data')
@endif @endsection