For auto increment id with int, after save() method, it returns id.
But it does not return custom increment id primary key done by mysql trigger.
$productData = new Product($request->all());
$productData->save($productData->getAttributes());
return $productData->id;
how to retrieve custom id in this case ?