@extends('layouts.vertical-master-layout') @section('title') {{ __('Students') }} @endsection @section('css') @endsection @section('content') {{-- breadcrumbs --}} @section('breadcrumb') @component('components.breadcrumb') @slot('li_1') {{ __('Students') }} @endslot @slot('title') {{ __('All Students') }} @endslot @endcomponent @endsection @section('pagecontentinfo')

{{ __('Total Students') }}

{{ $students->count() }}

{{ __('Verified') }}

{{ $students->where('mobileVerified', 1)->where('emailVerified', 1)->count() }}

{{ __('Blocked') }}

{{ $students->where('status', 0)->count() }}

@endsection

{{ __('All Students') }}

@endsection @section('script') {{-- --}} @endsection