FirmwarePollJob::dispatchSync(download: $this->option('download')), message: 'Checking for latest firmware...' ); $latestFirmware = Firmware::getLatest(); if ($latestFirmware instanceof Firmware) { table( rows: [ ['Latest Version', $latestFirmware->version_tag], ['Download URL', $latestFirmware->url], ['Storage Location', $latestFirmware->storage_location], ] ); } else { $this->error('No firmware found.'); } } }