\Assetdocs\Student\Workflow\ClientValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Client workflow actions 'Assetdocs\Student\Models\Client' => \Assetdocs\Student\Workflow\ClientAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Client workflow notifiers 'Assetdocs\Student\Models\Client' => \Assetdocs\Student\Workflow\ClientNotifier::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); } }