\Asadi\Feestructure\Workflow\FeestructureValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Feestructure actions \Asadi\Feestructure\Models\Feestructure::class => \Asadi\Feestructure\Workflow\FeestructureAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Feestructure notifiers \Asadi\Feestructure\Models\Feestructure::class => \Asadi\Feestructure\Workflow\FeestructureNotifier::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); } }