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

{{ get_phrase('Manage Bootcamp') }}

{{ get_phrase('Add New Bootcamp') }}
@if (isset($_GET) && count($_GET) > 0) @endif
@php $queries = request()->query(); unset($queries['search']); @endphp
@foreach ($queries as $key => $query) @endforeach
@if ($bootcamps->count() > 0)

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

@foreach ($bootcamps as $key => $bootcamp) @endforeach

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

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