Then run the following command:
composer require davron112/synchronizations
Add the package to your application service providers in config/app.php file.
'providers' => [
...
/**
* Third Party Service Providers...
*/
Davron112\Synchronizations\Providers\SynchronizationsServiceProvider::class,
],
Then run the following commands for publish package files:
php artisan vendor:publish --provider="Davron112\Synchronizations\Providers\SynchronizationsServiceProvider"
composer dump-autoload
Finally run migrations and seeders.
php artisan migrate