@extends('layouts.vertical-master-layout') @section('title') {{ __('Courses') }} @endsection @section('css') @endsection @section('content') {{-- breadcrumbs --}} @section('breadcrumb') @component('components.breadcrumb') @slot('li_1') {{ __('Courses') }} @endslot @slot('title') {{ __('All Courses') }} @endslot @endcomponent @endsection @section('pagecontentinfo') {{--

Total Courses

{{ $courses->count() }}

Enrolled Students

{{ $courses->sum('students_count') }}

Published

{{ $courses->where('is_published',1)->count() }}

--}} @endsection
{{--

{{ $course_count }}

--}}
{{-- Means two courses are available --}} {{-- @if ($course_count>1)
@csrf
@endif --}}
{{-- --}}

{{ $course->institute->name ?? ' No Institute Name Available' }}

{{ number_format($course->institute->ratings->avg('rating'),1) ?? 0 }} {{ $course->institute->ratings->count() }} Reviews
{{ $course->title ?? ' No Title' }}
{{--
${{ $course->price ?? "0" }} - 20 % Off
--}} {{-- $280 --}} {{--

If several languages coalesce, the grammar of the resulting language is more simple and regular

--}}
{{ __('Description') }} :

{{ $course->des }}

  • {{ __('Start Date') }} : {{ $course->start_date }}
  • {{ __('End Date') }} : {{ $course->end_date }}
  • {{ __('Featured') }} : {{ $course->is_feature ? 'Yes' : 'No' }}
  • @if ($course->seats)
  • {{ __('Seats') }} : {{ $course->seats }}
  • {{ __('Filled') }} : {{ $course->filled_seats }}
  • @endif
{{ __('Course Type') }} :
  • {{ $course->course_type ? 'Online ' : 'Offline' }}
{{ __('Duration') }} :
  • {{ $course->duration }}
{{ __('Timing') }} :
  • {{ $course->timing }}
{{--
{{ __('Language') }} :
  • {{ __('English') }}
  • {{ __('Arabic') }}
--}}
{{--
Delivery location
--}} {{--
Select Sizes :
--}}
{{-- Students SS Row --}}
{{ __('Students') }}
{{-- Coupons CC Row --}}
{{ __('Coupons') }}
@endsection @section('script') {{-- --}} @endsection