info('Updating channels content...'); $channels = app(Channel::class) ->where('type', 'channel') ->limit(20) ->get(); $this->withProgressBar($channels, function (Channel $channel) { $channel->updateContentFromExternal(); }); } }