When I run, ``` $Product = Product::find($id); $Product->categories()->lists('category_id') ``` I get below error. ``` SQLSTATE[23000]: Integrity constraint violation: 1052 Column 'id' in field list is ambiguous (SQL: select `category_id`, `id` from `categories` inner join `category_product` on `categories`.`id` = `category_product`.`category_id` where `category_product`.`product_id` = ?) (Bindings: array ( 0 => '1', )) ``` Product and Category is many-to-many