@extends('layout')
@section('title', 'Home')
@section('content')
@if (in_array(Auth::user()->role, array('admin', 'manager')))
Total Active Admins
Count
Total Active Managers
Count
{{ $totalActiveManagers }}
Total Active Trainees
Count
{{ $totalActiveTrainees }}
Total Active Employers
Count
{{ $totalActiveEmployers }}
Total Inactive Users
Count
{{ $totalInactiveUsers }}
@else
Welcome. Please use the navigation on the left.
@endif
@endsection
@section('js')
@endsection()