@extends('backend.layouts.app') @section('content') @if(env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null)
{{translate('Please Configure SMTP Setting to work all email sending functionality')}}, {{ translate('Configure Now') }}
@endif

Good Morning, {{auth()->user()->name}}

Here's what's happening with your store today.

{{--
--}}

{{translate('Total School')}}

0

{{translate('Total Teachers')}}

0

{{translate('Total Students')}}

0

{{translate('Total Sections')}}

Teacher and Students By School

Latest 10 Students

@if($latest_st->isNotEmpty()) @foreach($latest_st as $st) @endforeach @endif
{{ $st->name }}
{{ $st->unique_id }}
Grade
{{$st->grade->name}}
Section
{{$st->section->name}}

Latest 10 Teachers

@if($latest_teacher->isNotEmpty()) @foreach($latest_teacher as $teacher) @endforeach @endif
{{$teacher->unique_id ?? '#'}}
Id No.
{{ !is_null($teacher->school) ? $teacher->school->name : 'N/A' }}
School Name

Student By Shcool

Student By Subjects

@endsection @section('script') {{-- --}} @endsection