PHPackages                             michelmelo/laravel-jazzrh - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. michelmelo/laravel-jazzrh

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

michelmelo/laravel-jazzrh
=========================

A comprehensive HR management package for Laravel 12

1.0.0(4mo ago)00MITPHPPHP ^8.3

Since Feb 20Pushed 4mo agoCompare

[ Source](https://github.com/michelmelo/laravel-jazzrh)[ Packagist](https://packagist.org/packages/michelmelo/laravel-jazzrh)[ RSS](/packages/michelmelo-laravel-jazzrh/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

JazzRH Package for Laravel 12
=============================

[](#jazzrh-package-for-laravel-12)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b3e56061b3770fd6e555f9bb75ea466136702e2b98a0c386b7ee992f6de51daf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d696368656c6d656c6f2f6c61726176656c2d6a617a7a72682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/michelmelo/laravel-jazzrh)[![License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

A comprehensive HR management package for Laravel 12, built with the latest Laravel standards and best practices.

Features
--------

[](#features)

- 📋 **User Management** - Manage HR team members with different roles
- 💼 **Job Management** - Create, update, and track job openings
- 👥 **Applicant Management** - Manage job applicants and their applications
- 📅 **Activity Tracking** - Log all system activities
- 📝 **Tasks &amp; Notes** - Create tasks and notes for team members
- 📞 **Contact Management** - Manage contacts and relationships
- 📂 **Resource Management** - Track company resources
- 📄 **File Management** - Upload and manage files
- ❓ **Questionnaire System** - Create and manage questionnaires for applicants
- 🎯 **RESTful API** - Complete API endpoints for all features

Requirements
------------

[](#requirements)

- PHP ^8.3
- Laravel ^12.0

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require michelmelo/laravel-jazzrh
```

### Publishing Configuration

[](#publishing-configuration)

Publish the configuration file:

```
php artisan vendor:publish --tag=jazzrh-config
```

### Running Migrations

[](#running-migrations)

Publish and run migrations:

```
php artisan vendor:publish --tag=jazzrh-migrations
php artisan migrate
```

Configuration
-------------

[](#configuration)

The configuration file is located at `config/jazzrh.php`. Here you can customize:

- Table names
- Model classes
- API settings
- Features to enable/disable

```
return [
    'tables' => [
        'users' => 'users',
        'jobs' => 'jobs',
        'applicants' => 'applicants',
        // ... more tables
    ],

    'api' => [
        'prefix' => 'api/v1',
        'middleware' => ['api'],
    ],
];
```

Usage
-----

[](#usage)

### Using the Facade

[](#using-the-facade)

```
use MichelMelo\JazzRh\Facades\JazzRh;

// Get all users
$users = JazzRh::users()->getAllUsers();

// Get all jobs
$jobs = JazzRh::jobs()->getAllJobs();

// Get all applicants
$applicants = JazzRh::applicants()->getAllApplicants();
```

### Using Services Directly

[](#using-services-directly)

```
use MichelMelo\JazzRh\Services\UserService;
use MichelMelo\JazzRh\Services\JobService;
use MichelMelo\JazzRh\Services\ApplicantService;

// Inject the service
public function __construct(UserService $userService)
{
    $this->userService = $userService;
}

// Use the service
$user = $this->userService->getUserById(1);
$users = $this->userService->getAllUsers();
```

API Endpoints
-------------

[](#api-endpoints)

### Users

[](#users)

```
GET     /api/v1/users              - List all users
POST    /api/v1/users              - Create a new user
GET     /api/v1/users/{id}         - Get a specific user
PUT     /api/v1/users/{id}         - Update a user
DELETE  /api/v1/users/{id}         - Delete a user

```

### Jobs

[](#jobs)

```
GET     /api/v1/jobs               - List all jobs
POST    /api/v1/jobs               - Create a new job
GET     /api/v1/jobs/{id}          - Get a specific job
PUT     /api/v1/jobs/{id}          - Update a job
DELETE  /api/v1/jobs/{id}          - Delete a job
GET     /api/v1/jobs/active        - List active jobs
GET     /api/v1/jobs/category/{categoryId} - List jobs by category

```

### Applicants

[](#applicants)

```
GET     /api/v1/applicants         - List all applicants
POST    /api/v1/applicants         - Create a new applicant
GET     /api/v1/applicants/{id}    - Get a specific applicant
PUT     /api/v1/applicants/{id}    - Update an applicant
DELETE  /api/v1/applicants/{id}    - Delete an applicant
GET     /api/v1/applicants/job/{jobId} - List applicants by job
GET     /api/v1/applicants/search/{search} - Search applicants

```

Models
------

[](#models)

The package includes the following models:

- `User` - HR team members and users
- `Job` - Job openings
- `Applicant` - Job applicants
- `Activity` - Activity logs
- `Contact` - Contact information
- `Task` - Tasks and assignments
- `Resource` - Company resources
- `Category` - Categories for jobs and applicants
- `File` - File uploads
- `Note` - Notes and memos
- `QuestionnaireQuestion` - Questionnaire questions
- `QuestionnaireAnswer` - Applicant answers to questionnaires

Validation Rules
----------------

[](#validation-rules)

### Store User Request

[](#store-user-request)

- `name` - Required, string, max 255 characters
- `email` - Required, email, unique
- `password` - Required, string, min 8 characters, confirmed
- `phone` - Optional, string, max 20 characters
- `cpf` - Optional, string, unique
- `role` - Required, one of: admin, manager, recruiter, user

### Store Job Request

[](#store-job-request)

- `title` - Required, string, max 255 characters
- `description` - Required, string
- `category_id` - Required, exists in categories table
- `location` - Required, string, max 255 characters
- `salary_min` - Optional, numeric, min 0
- `salary_max` - Optional, numeric, greater than salary\_min
- `contract_type` - Required, one of: clt, pj, temporary, internship
- `seniority_level` - Required, one of: junior, mid-level, senior
- `status` - Required, one of: draft, published, closed
- `closes_at` - Optional, date, after now

### Store Applicant Request

[](#store-applicant-request)

- `name` - Required, string, max 255 characters
- `email` - Required, email, unique
- `phone` - Optional, string, max 20 characters
- `cpf` - Optional, string, unique
- `birth_date` - Optional, date, before now
- `address` - Optional, string, max 255 characters
- `city` - Optional, string, max 100 characters
- `state` - Optional, string, max 2 characters
- `zip_code` - Optional, string, max 20 characters
- `linkedin` - Optional, valid URL
- `portfolio` - Optional, valid URL

Testing
-------

[](#testing)

Run the test suite:

```
composer test
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Support
-------

[](#support)

For support, email  or open an issue on GitHub.

Changelog
---------

[](#changelog)

See [CHANGELOG.md](CHANGELOG.md) for details of what has changed.

Contributing
------------

[](#contributing)

Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance75

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

133d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0d756073dec37ac9abd3c7edd0cf00b94f2d2de0055531eba5472392b1fd4da2?d=identicon)[michelmelo](/maintainers/michelmelo)

---

Top Contributors

[![michelmelo](https://avatars.githubusercontent.com/u/159223?v=4)](https://github.com/michelmelo "michelmelo (2 commits)")

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/michelmelo-laravel-jazzrh/health.svg)

```
[![Health](https://phpackages.com/badges/michelmelo-laravel-jazzrh/health.svg)](https://phpackages.com/packages/michelmelo-laravel-jazzrh)
```

###  Alternatives

[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[crumbls/layup

A visual page builder plugin for Filament 5 — Divi-style grid layouts with extensible widgets.

592.7k2](/packages/crumbls-layup)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1320.9k4](/packages/team-nifty-gmbh-tall-datatables)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
