1. Go to this page and download the library: Download ikay/j-rh library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ikay / j-rh example snippets
use Ikay\JRh\JRhPlugin;
->plugins([
JRhPlugin::make(),
])
use Filament\Navigation\NavigationGroup;
->navigationGroups([
NavigationGroup::make(fn () => __('j-rh::j-rh.hr_management')),
])
use Ikay\JRh\Traits\HasEmployees;
class User extends Authenticatable
{
use HasEmployees;
}