[अतिरिक्त अपडेट और समाधान]
मैंने बस कोशिश की कि उसकेोकू समर्थन ने क्या कहा। मैंने एक मॉडल में एक निर्माता को निम्नलिखित की तरह संपादित किया (मेरे मामले में, मैंने मॉडल से संपर्क किया था)
public function initialize(array $config)
{
parent::initialize($config);
// added "salesforce" for following table name
$this->table('salesforce.account');
$this->displayField('name');
$this->primaryKey('id');
}
और app.php फ़ाइल में
'schema' => 'public',
स्कीमा जनता की ओर इशारा करती है।
यह काम कर गया!