In Laravel I want to query a record in the database for id
of the table, but the code below only queries if the column nomenclature is id
$prod = $this->produto->find(3)
If the column name is prod_id
for example, how can I return the record?