@extends('layouts.app') @section('content')
@include('layouts.left-menu')
Total Students
{{$studentCount}}
Total Teachers
{{$teacherCount}}
Total Classes
{{ $classCount }}
{{--
Total Books
800
--}}
@if($studentCount > 0)
Students % Male Female
@php $maleStudentPercentage = round(($maleStudentsBySession/$studentCount), 2) * 100; $maleStudentPercentageStyle = "style='background-color: #0678c8; width: $maleStudentPercentage%'"; $femaleStudentPercentage = round((($studentCount - $maleStudentsBySession)/$studentCount), 2) * 100; $femaleStudentPercentageStyle = "style='background-color: #49a4fe; width: $femaleStudentPercentage%'"; @endphp
{{$maleStudentPercentage}}%
{{$femaleStudentPercentage}}%
@endif

Welcome to Unifiedtransform!

Thanks for your love and support.

Manage school better

with Unifiedtransform .

Events
@include('components.events.event-calendar', ['editable' => 'false', 'selectable' => 'false']) {{-- --}}
Notices {{ $notices->links() }}
@isset($notices)
@foreach ($notices as $notice)

{!!Purify::clean($notice->notice)!!}
@endforeach @endisset @if(count($notices) < 1)
No notices
@endif
@include('layouts.footer')
@endsection