JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour
<?php namespace Common\Channels; use App\Models\Channel; use Illuminate\Console\Command; class UpdateAllChannelsContent extends Command { protected $signature = 'channels:update'; public function handle(): void { $this->info('Updating channels content...'); $channels = app(Channel::class) ->where('type', 'channel') ->limit(20) ->get(); $this->withProgressBar($channels, function (Channel $channel) { $channel->updateContentFromExternal(); }); } }