@extends('web.layouts.layout') @section('title', $services_details->title ?? 'About Online Course') @section('meta_title', $services_details->meta_title ?? 'About Online Course') @section('meta_description', $services_details->meta_description ?? '') @section('meta_keywords', $services_details->meta_keywords ?? '') @section('content')

{{ $services_details->title ?? '' }}

Home {{ $services_details->title ?? '' }}
{!! $services_details->description ?? '' !!}
@if ($services_details->id == 12)

Active Learning Circle

@endif @foreach($cources as $course)
course image
{{ $course->lessons ?? '' }}
{{ $course->students ?? '' }}
{{ $course->title ?? '' }}

{{ $course->short_title ?? '' }}

@php $rating = $course->rating ?? 0; $fullStars = floor($rating); $halfStar = ($rating - $fullStars) >= 0.5; $emptyStars = 5 - ceil($rating); @endphp @for ($i = 0; $i < $fullStars; $i++) @endfor @if ($halfStar) @endif @for ($i = 0; $i < $emptyStars; $i++) @endfor
({{ $course->rating ?? '' }} / 5 Ratings)
{{ $course->certificate_badge ?? '' }}
Level: {{ $course->level ?? '' }}

{{ $course->description ?? '' }}

₹ {{ $course->amount2 ?? '' }} ₹ {{ $course->amount ?? '' }}
@endforeach
@if ($services_details->id == 12)

Inactive Learning Circle

@foreach($expierycources as $course)
course image
{{ $course->lessons ?? '' }}
{{ $course->students ?? '' }}
{{ $course->title ?? '' }}

{{ $course->short_title ?? '' }}

@php $rating = $course->rating ?? 0; $fullStars = floor($rating); $halfStar = ($rating - $fullStars) >= 0.5; $emptyStars = 5 - ceil($rating); @endphp @for ($i = 0; $i < $fullStars; $i++) @endfor @if ($halfStar) @endif @for ($i = 0; $i < $emptyStars; $i++) @endfor
({{ $course->rating ?? '' }} / 5 Ratings)
{{ $course->certificate_badge ?? '' }}
Level: {{ $course->level ?? '' }}

{{ $course->description ?? '' }}

₹ {{ $course->amount2 ?? '' }} ₹ {{ $course->amount ?? '' }}
@endforeach
@endif
@endsection