// app/config/app.php or anywhere you like
'aliases' => [
...
'MorphOrder' => 'SomeNamespaceOrder',
'MorphStaff' => 'MaybeAnotherNamespaceStaff',
...
]
// Staff model
protected $morphClass = 'MorphStaff';
// Order model
protected $morphClass = 'MorphOrder';