I can't find out through the documentation, but is there a way using Model::find(); to supply the value of a foreign key versus having to filter on the field itself?
IE, I have a table Job, that has a field: status_id, which is a relationship to the Status model. I want to be able to find all Jobs whose status is 'In Progress' (the status table is simply id, name).