-
-
Notifications
You must be signed in to change notification settings - Fork 74
Description
First thanks very much for developing ElSF, which I only discovered a week ago and is already very helpful. Thanks also for the Eloquent for SalesForce User Guide which is very nicely constructed.
Second, I have several proposed corrections in the Eloquent for SalesForce User Guide at . (I don't see a way to propose the edits in that document, so I am using 'issues' to do so)
1: add php before artisan in two places
change 'artisan make:model Lead' to 'php artisan make:model Lead'
change 'artisan make:salesforce Lead' to 'php artisan make:salesforce Lead'
2 correct namespace suggested for the Eloquent model to be synchronized
In the section "Local Sync (NEW!)" the
I think 'namespace Lester\EloquentSalesForce;' should be corrected to
'namespace App\Models;'
3 It would be helpful to include a mention of the src/Console/SyncFromSalesforce.php file
I found the file by exploring the code in GitHub but it would be helpful for add a sentence or two about it to to the Eloquent for SalesForce User Guide
(I am having trouble with sync, but I will wait on suggestions/question on synchronization until I have done more investigation on my own)