@extends('adminlte::page') @section('title', 'Dashboard') @section('content_header')

Dashboard

@stop @section('content')

Welcome {{ Auth::user()->name }}.

{{ \App\Models\Children::all()->count() }}

Total Registered

More info

{{ \App\Models\Children::where('approval_status', 'approved')->count() }}

Total Approved

More info

{{ \App\Models\Children::where('approval_status', 'rejected')->count() }}

Total Rejected

More info

{{ \App\Models\Country::all()->count() }}

Total Countries

More info

Number of Childrens per Country

@stop @section('css') {{-- Add here extra stylesheets --}} {{-- --}} @stop @section('js') @stop