JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "UpdateAllChannelsContent.php"

Full Path: /home/markqprx/iniasli.pro/common-20260222054425/Channels/UpdateAllChannelsContent.php
File size: 551 bytes
MIME-type: text/x-php
Charset: utf-8

<?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();
        });
    }
}