protected function handleRecordCreation(array $data): Model
{
ApplyCashback::dispatch($data['userId'], $data['serviceId']); // Job with creating logic
return static::getModel()::create($data); // I don't need to create another record
}
protected function handleRecordCreation(array $data): Model
{
ApplyCashback::dispatch($data['userId'], $data['serviceId']); // Job with creating logic
return static::getModel()::create($data); // I don't need to create another record
}