@extends('layouts.master') @section('content') @php $totaladmin = DB::table("users")->count(); $totalteachers = DB::table("teacherstaff")->where('type',1)->count(); $totalstaff = DB::table("teacherstaff")->where('type',2)->count(); $totalnotices = DB::table("notices")->where('type',1)->count(); @endphp
@include('components.error_messages') @component('components.breadcrumb') @slot('breadcrumb1') @lang('common.dashboard') @endslot @slot('breadcrumb1_link') {{ route('dashboard') }} @endslot @endcomponent

@lang('common.dashboard')

@lang('common.total_admin')

{{ $totaladmin }}

@lang('common.total_teacher')

{{ $totalteachers }}

@lang('common.total_staff')

{{ $totalstaff }}

@lang('common.total_notice')

{{ $totalnotices }}

@endsection @push('footer_scripts') @endpush