В соответствии с документами по загрузке:
When using this feature, you should always include the id column and any relevant foreign key columns
Попробуйте:
$query = Transaction::select('id', etc.., 'channel:id,uuid');
Или
$query = Transaction::select('id', etc..)->with('channel:id,uuid');