feat: post-fill hook

This commit is contained in:
2024-04-17 13:06:48 +02:00
parent 9d17dacae2
commit abce313193
4 changed files with 18 additions and 0 deletions

View File

@@ -44,4 +44,9 @@ trait HasConnectData
foreach ($touched as $model)
$model->save();
}
public function postFillConnectData(array $data)
{
// Intended for post-processing / relationship handling
}
}