@extends('components.dashboard.layouts.master')
@section('title', __('dashboard.dashboard'))
@section('styles')
@endsection
@section('content')
@php $isTeacher = auth()->user()->type === 'teacher'; @endphp
📊 {{ __('Dashboard Overview') }}
📚 {{ __('Total Courses') }}
{{ $allcourses }}
🎓 {{ __('Total Enrolled Students') }}
{{ $allstudents }}
@unless($isTeacher)
🧑🏫 {{ __('Total Teachers') }}
{{ $allteachers }}
@endunless
{{ __('Monthly Courses') }}
{{ __('Monthly Students') }}
@unless($isTeacher)
{{ __('Monthly Teachers') }}
@endunless
@endsection