@extends('layouts.admin') @push('title', get_phrase('Bootcamp Manager')) @section('content')
{{ get_phrase('Showing') . ' ' . count($bootcamps) . ' ' . get_phrase('of') . ' ' . $bootcamps->total() . ' ' . get_phrase('data') }}
# | {{ get_phrase('Title') }} | {{ get_phrase('Category') }} | {{ get_phrase('Module & Class') }} | {{ get_phrase('Enrolled Student') }} | {{ get_phrase('Status') }} | {{ get_phrase('Price') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|---|---|---|
{{ ++$key }} |
{{ get_phrase('Enrollments') }}: {{ bootcamp_enrolls($bootcamp->id) }} |
{{ get_phrase($bootcamp->status ? 'Active' : 'Inactive') }} |
@if ($bootcamp->is_paid == 0)
{{ get_phrase('Free') }} @else{{ currency($bootcamp->price - $bootcamp->discounted_price) }} @endif |
{{ get_phrase('Showing') . ' ' . count($bootcamps) . ' ' . get_phrase('of') . ' ' . $bootcamps->total() . ' ' . get_phrase('data') }}
{{ $bootcamps->links() }}