@extends('admin.layouts.master') @section('page-title'){{$page}}@endsection @section('menu'){{$menu}}@endsection @section('content')

HR Suite

@if(session('message'))
{{ session('message') }}
@endif

TopSkills Experts HR Cloud

Recruitment, contracts, onboarding, remote work, time off, assets, performance, compliance, and offboarding in one SaaS workspace.

@csrf
@php $modules = array( array('Recruit', 'Candidate scoring, shortlists, rejection responses', 'fas fa-user-check', 'bg-info'), array('Contract', 'Offer letters, contractor packs, renewals', 'fas fa-file-signature', 'bg-success'), array('Onboard', '30/60/90 plans, equipment, accounts, buddy tasks', 'fas fa-route', 'bg-indigo'), array('Remote', 'WFH policy, timezone coverage, workspace support', 'fas fa-house-user', 'bg-warning'), array('Perform', 'Goals, pulse reviews, development actions', 'fas fa-chart-line', 'bg-danger'), array('Offboard', 'Exit interviews, access removal, asset returns', 'fas fa-door-open', 'bg-secondary'), array('Consult', 'Multi-client HR consulting with package limits', 'fas fa-briefcase', 'bg-primary'), array('Analyze', 'Client, staff, hiring, and lifecycle reporting', 'fas fa-chart-pie', 'bg-info'), array('Skills', 'ATS resume templates and workforce skills map', 'fas fa-layer-group', 'bg-success'), ); @endphp @foreach($modules as $module)
{{ $module[0] }} {{ $module[1] }}
@endforeach

HR consultant SaaS packages

@forelse($consultantPackages as $package) @empty @endforelse
Package Price Clients Staff Key features
{{ $package['title'] }} @if($package['is_featured']) Featured @endif ${{ number_format($package['monthly_price'], 0) }}/mo {{ $package['client_limit'] >= 999 ? 'Custom' : $package['client_limit'] }} {{ $package['staff_limit'] >= 99999 ? 'Custom' : number_format($package['staff_limit']) }} {{ str_replace('|', ', ', $package['features']) }}
Populate dummy HR data to create consultant packages.

Active HR workflows

@forelse($workflows as $workflow) @empty @endforelse
Module Workflow Owner Status Due
{{ ucwords(str_replace('_', ' ', $workflow['module'])) }} {{ $workflow['title'] }}
{{ $workflow['meta'] }}
{{ $workflow['owner'] }} {{ ucfirst($workflow['status']) }} {{ $workflow['due_at'] ? dateFormat($workflow['due_at']) : '-' }}
No HR workflows yet. Populate dummy HR data to start.

Consultant client register

@forelse($clients as $client)
{{ ucfirst($client['status']) }}
{{ $client['company_name'] }}

{{ $client['industry'] ?: 'General HR' }} / {{ number_format($client['staff_count']) }} staff

@empty

No consultant clients yet.

@endforelse

Recruitment to HRM handoff

@forelse($employees as $employee)
{{ ucfirst($employee['lifecycle_status']) }}
{{ $employee['first_name'] }} {{ $employee['last_name'] }}

{{ $employee['job_title'] }} / {{ $employee['work_arrangement'] }} / {{ $employee['employment_type'] }}

@empty

No staff handoff records yet.

@endforelse

Policy and document starter pack

@forelse($documents as $doc)
{{ ucfirst($doc['category']) }}
{{ $doc['title'] }}

{{ trimString(strip_tags($doc['content']), 145) }}

@empty

No policy starter documents yet.

@endforelse

ATS resume template

@forelse($resumeTemplates as $template)
{{ $template['title'] }}

{{ $template['summary'] }}

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

No ATS resume templates yet.

@endforelse

Ownership and licensing

Owner: {{ setting('license_owner') ?: 'TopSkills Experts' }}

This build is configured as owner-managed proprietary SaaS. You can operate it for your own clients and package it for resale under your own commercial terms.

Demo reset: Every {{ setting('demo_reset_minutes') ?: '30' }} minutes

Demo links: Expire after {{ setting('demo_link_expiry_hours') ?: '72' }} hours

@endsection