By default, Eloquent models expect for the primary key to be named 'id'. If that is not your case, you can change the name of your primary key by specifying the $primaryKey property.
class Citizen extends Model
{
protected $primaryKey = 'socialSecurityNo';
// ...
}
Now, any Eloqu...