@extends('layouts.admin') @section('styles') @endsection @section('content')

Welcome to your Dashboard

{{$studentcount}}

Registered Students

{{$teachercount}}

Registered Teachers

{{$pendingpayment}}

Pending Payments

Students Registration

Courses Registrations

@foreach($gradereg as $gr)
{{$gr->total}}
@php $go = App\Modals\Grade::where('id', $gr->grade_id)->first(); @endphp

{{$go->name}}

@endforeach

Student Registration Requests (Fee not paid yet)

@foreach($students as $student) @endforeach
(#) Name Email Grade Course Status Actions
{{$loop->iteration}} {{$student->student->given_name}} {{$student->student->user->email}} {{$student->grade->name}} {{$student->course->name}} @if($student->status == 0) Payment Pending @else @endif
@endsection @section('scripts') @endsection