@extends('employer.layouts.master') @section('content')

HRM Workspace clients, staff, onboarding, and compliance

@if(session('message'))
{{ session('message') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif

{{ count($clients) }}

Client companies

{{ count($employees) }}

Managed staff

{{ isset($subscription['client_limit']) ? $subscription['client_limit'] : employerId('client_limit') }}

Client limit

{{ isset($subscription['staff_limit']) ? $subscription['staff_limit'] : employerId('staff_limit') }}

Staff limit

Add client company

@csrf

Add staff record

@csrf

Client register

@forelse($clients as $client) @empty @endforelse
ClientIndustryStaffStatus
{{ $client['company_name'] }}{{ $client['industry'] }}{{ $client['staff_count'] }}{{ ucfirst($client['status']) }}
No clients yet.

Managed staff and recruitment handoff

@forelse($employees as $employee) @empty @endforelse
NameRoleWorkStatus
{{ $employee['first_name'] }} {{ $employee['last_name'] }}
{{ $employee['email'] }}
{{ $employee['job_title'] }}
{{ $employee['manager_name'] }}
{{ $employee['employment_type'] }}
{{ $employee['work_arrangement'] }}
{{ ucfirst($employee['lifecycle_status']) }}
No staff records yet.

ATS compliant resume template

@forelse($resumeTemplates as $template)

{{ $template['title'] }}

{{ $template['summary'] }}

{{ trimString($template['content'], 1000) }}
@empty

No ATS resume template yet.

@endforelse
@endsection