Skip to content
/ hr Public

Creating Your Own Laravel Custom Package Using MongoDB : A Step-by-Step Guide

Notifications You must be signed in to change notification settings

AhnabShahin/hr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hr packages for Laravel - MongoDb

Dependency

"require": {
    "php": "^8.1",
    "laravel/framework": "^10.10",
},

Installation process

  • Open the composer.json of laravel project and set
"minimum-stability": "dev",  
"prefer-stable": true
  • run composer require xpeedstudio/hr "2.2.2"

Available Models

  • Country
  • Department
  • Employee
  • Job
  • JobHistory
  • Location
  • Region

Available Console Commend

  • For Seed - php artisan hr:seed

ER Diagram HR

Javatpoint