how are you importing? using a foreach? or using a command to import the actual file?
Importing using a foreach row, I'm using inside a foreach method, using Model::create([.....])
For a very simple 'progress bar' you could do something like
foreach($array as $a) {
Model::create();
echo '.';
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community