\Payroll\Department\Workflow\DepartmentValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Department actions \Payroll\Department\Models\Department::class => \Payroll\Department\Workflow\DepartmentAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Department notifiers \Payroll\Department\Models\Department::class => \Payroll\Department\Workflow\DepartmentNotifier::class, ]; /** * Register any package workflow validation services. * * @param \Litepie\Contracts\Workflow\Workflow $workflow * * @return void */ public function boot(WorkflowContract $workflow) { parent::registerValidators($workflow); parent::registerActions($workflow); parent::registerNotifiers($workflow); } }