@extends('admin.layouts.app') @push('css') @endpush @section('content')
@can('employer.view')

{{ $employersCount ?? 0 }}

Employers

{{--
--}}
@endcan @can('provider.view')

{{ $providersCount ?? 0 }}

Providers

{{--
--}}
@endcan @can('facility.view')

{{ $facilitiesCount ?? 0 }}

Facilities

{{--
--}}
@endcan @can('job.view')

{{ $jobsCount ?? 0 }}

Jobs

{{--
--}}
@endcan
{{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

2.7K

--}} {{--

Avg Sessions

--}} {{--
--}} {{-- +5.2% --}} {{-- vs last 7 days --}} {{--
--}} {{--
--}} {{-- View Details --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Goal: $100000

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Users: 100K

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Retention: 90%

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Duration: 1yr

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
@canany(['employer.view', 'provider.view'])

Users

@foreach ($users ?? [] as $user) @endforeach
Name Email Phone Status
{!! $user->name !!} {!! $user->email !!} {!! $user->phone !!} {!! $user->is_active ? 'Active' : 'Inactive' !!}
@endcanany
@endsection