\Kependudukan\KB\Workflow\ProvinceValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Province actions \Kependudukan\KB\Models\Province::class => \Kependudukan\KB\Workflow\ProvinceAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Province notifiers \Kependudukan\KB\Models\Province::class => \Kependudukan\KB\Workflow\ProvinceNotifier::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); } }