public function handle()
{
$datas = Model::all();
$bar = $this->output->createProgressBar($datas->count());
$datas->each(function ($data) use ($bar) {
try {
// do something
} catch (Exception $e) {
$this->error('Error');
}
$bar->advance();
});
}