@@ -44,7 +44,8 @@ public static function bootHasWorkflows(): void
44
44
return ;
45
45
}
46
46
47
- WorkflowModelStatus::query ()
47
+ $ wmsClass = config ('workflow.workflow_model_status_class ' );
48
+ $ wmsClass ::query ()
48
49
->withTrashed ()
49
50
->where ('model_type ' , $ model ->getMorphClass ())
50
51
->where ('model_id ' , $ model ->getKey ())
@@ -104,7 +105,7 @@ public function getCurrentWorkflow(): ?Workflow
104
105
*/
105
106
public function modelStatus (): MorphOne
106
107
{
107
- return $ this ->morphOne (WorkflowModelStatus::class , 'model ' )
108
+ return $ this ->morphOne (config ( ' workflow.workflow_model_status_class ' ) , 'model ' )
108
109
->where ('workflow_id ' , $ this ->getCurrentWorkflow ()?->id);
109
110
}
110
111
@@ -115,15 +116,15 @@ public function modelStatus(): MorphOne
115
116
*/
116
117
public function modelStatuses (): MorphMany
117
118
{
118
- return $ this ->morphMany (WorkflowModelStatus::class , 'model ' );
119
+ return $ this ->morphMany (config ( ' workflow.workflow_model_status_class ' ) , 'model ' );
119
120
}
120
121
121
122
/**
122
123
* @throws Throwable
123
124
*/
124
125
public function allModelStatus (): MorphMany
125
126
{
126
- return $ this ->morphMany (WorkflowModelStatus::class , 'model ' )
127
+ return $ this ->morphMany (config ( ' workflow.workflow_model_status_class ' ) , 'model ' )
127
128
->where ('workflow_id ' , $ this ->getCurrentWorkflow ()?->id)
128
129
->withTrashed ();
129
130
}
@@ -224,7 +225,8 @@ public function isInFinalStatus(): bool
224
225
225
226
protected function createModelStatus (Workflow $ workflow , WorkflowStatus $ status ): WorkflowModelStatus
226
227
{
227
- $ modelStatus = new WorkflowModelStatus ();
228
+ $ wmsClass = config ('workflow.workflow_model_status_class ' );
229
+ $ modelStatus = new $ wmsClass ();
228
230
$ modelStatus ->model ()->associate ($ this );
229
231
$ modelStatus ->user ()->associate (Auth::user ());
230
232
$ modelStatus ->workflow ()->associate ($ workflow );
0 commit comments