@extends('admin.layout.master') @section('title', 'Dashboard') @section('section', __('dashboard.Dashboard')) @section('body')
@if (Auth::user()->hasRole(App\Models\User::SUPER_ADMIN_ROLE) || Auth::user()->hasRole(App\Models\User::SUPERVISOR_ROLE))

@lang('dashboard.Total Users')

{{ count($users) }}
@endif

@lang('dashboard.Total Assets')

{{ count($assets) }}
@can('show-cards')

@lang('dashboard.Remaining Assets For Assign')

{{ $remainingAssets }}

@lang('dashboard.Total Entities')

{{ $entities }}
@endcan
@can('show-map')
@endcan
@endsection