@extends('adminlte::page')
@section('title', 'Dashboard')
@section('content_header')
Dashboard
@stop
@section('content')
Welcome {{ Auth::user()->name }}.
{{ \App\Models\Children::all()->count() }}
Total Registered
{{ \App\Models\Children::where('approval_status', 'approved')->count() }}
Total Approved
{{ \App\Models\Children::where('approval_status', 'rejected')->count() }}
Total Rejected
{{ \App\Models\Country::all()->count() }}
Total Countries
@stop
@section('css')
{{-- Add here extra stylesheets --}}
{{-- --}}
@stop
@section('js')
@stop