@extends('web.layouts.layout') @section('title', 'Search Results for "' . ($searchTerm ?? '') . '"') @section('meta_title', 'Search Results for "' . ($searchTerm ?? '') . '"') @section('meta_description', 'Search results for "' . ($searchTerm ?? '') . '"') @section('meta_keywords', $searchTerm ?? '') @section('content')

Search Results

Home Search: {{ $searchTerm }}

Showing results for: {{ $searchTerm }}

@forelse($courses 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 ?? '' }}
@empty
No courses found for "{{ $searchTerm }}".
@endforelse
{{ $courses->links('pagination::bootstrap-5') }}
@endsection