UltimatePOS connection is not configured yet: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'v.is_dummy' in 'where clause' (Connection: mysql_pos, Host: 127.0.0.1, Port: 3306, Database: aditech_ultimatepos, SQL: select `p`.`id`, `p`.`name`, `p`.`type`, `p`.`sku`, `p`.`image`, `c`.`name` as `category_name`, `b`.`name` as `brand_name`, MIN(v.default_sell_price) as price, COALESCE(SUM(vld.qty_available), 0) as stock from `products` as `p` left join `categories` as `c` on `c`.`id` = `p`.`category_id` left join `brands` as `b` on `b`.`id` = `p`.`brand_id` inner join `variations` as `v` on `v`.`product_id` = `p`.`id` left join `variation_location_details` as `vld` on `vld`.`variation_id` = `v`.`id` and `vld`.`location_id` = 1 where `p`.`business_id` = 1 and (`v`.`is_dummy` is null or `v`.`is_dummy` = 0) group by `p`.`id`, `p`.`name`, `p`.`type`, `p`.`sku`, `p`.`image`, `c`.`name`, `b`.`name` order by `p`.`id` desc limit 12)