Get number of successful imports at end #3823
quantumwebco
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
@patrickbrouwers would you be open to a PR for this too? So there is feedback on the number of rows successfully imported? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to get the number of successful imports at the end of the import?? Like
$import->failures()
but could even just return anint $count
propertyWorkaround: add public property $count to the import class and then
$this->count++;
just before the return in themodel()
method thendd($import->count)
at the endBeta Was this translation helpful? Give feedback.
All reactions