@extends('layouts.app') @section('content')

Users

@if(Route::currentRouteName() != 'users.delete') Add New @endif
@if(Route::currentRouteName() != 'users.delete')
{{App\Models\User::where('id','!=',App\Models\User::ROLE_ADMIN)->count()}}

All Accounts

{{App\Models\User::where('id','!=',App\Models\User::ROLE_ADMIN)->where('status',App\Models\User::STATUS_ACTIVE)->count()}}

Active Accounts

{{App\Models\User::where('status',App\Models\User::STATUS_INACTIVE)->count()}}

Inactive Accounts

@endif
@include('flash::message')
@include('users.table')
@endsection