Get form values in beforeCreate() hook
So I have a resource and in the create the user is presented with two radio options "Property" with option X and Y and "Vehicle" with option X and Y
Before the record is created I want to make sure the user has picked either 1 Property or 1 Vehicle (One in each cannot be selected only one across both radio options)
Is there a way to do this in validation (if its easier)
Otherwise how do I access these values in the beforeCreate() hook as that's how I was going to check but cant figure out to get their values.
Solution:Jump to solution
Figured it out using
protected function handleRecordCreation(array $data): Model instead...
1 Reply
Solution
Figured it out using
protected function handleRecordCreation(array $data): Model instead