Skip to content

keyhoang/org-module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

You can install this package via composer using this command:

composer require keyhoang/org-module

Register event providers:

\KeyHoang\OrgModule\Providers\EventServiceProvider::class

Using this schedule:

$schedule->command(SyncUserCommand::class)->daily();
$schedule->command(SyncDepartmentCommand::class)->daily();

Using this RabbitMQJob:

'sync-user' => SyncUserQueue::class . '@handle'