@extends('layouts.default')
@push('title', get_phrase('Home'))
@push('meta')@endpush
@push('css')
@endpush
@section('content')
{{ get_phrase("Those course highlights a handpicked course with exceptional content or exclusive offerings.") }} {{ get_phrase('Happy student') }} {{ get_phrase('Quality educators') }} {{ get_phrase('Premium courses') }} {{ get_phrase('Cost-free course') }}
{{ get_phrase("Top rated course showcases the highest-rated course based on student reviews and performance metrics.") }}
{{ get_phrase("It highlights feedback and testimonials from users, reflecting their experiences and satisfaction.") }} {{ $faq['answer'] }}
{{ get_phrase("The latest blog highlights the most recent articles, updates, and insights from our platform.") }}{{ get_phrase('Special Featured Course') }}
{{ get_phrase('Why Choose Us') }}
@php
$total_students = DB::table('users')->where('role', 'student')->get();
$total_instructors = DB::table('users')->where('role', 'instructor')->get();
$free_courses = DB::table('courses')->where('is_paid', 0)->get();
$premium_courses = DB::table('courses')->where('is_paid', 1)->get();
@endphp
{{ count($total_students) }} +
{{ count($total_instructors) }} +
{{ count($premium_courses) }}+
{{ count($free_courses) }}+
{{ get_phrase('Top Rated Course') }}
{{ get_phrase('What the people Thinks About Us') }}
{{ get_phrase('Frequently Asked Questions') }}
{{ get_phrase('Our Latest Blog') }}