Laravel vendor publish scout doesn't publish scout.php in the config folder

Viewed 1446

After running,composer require laravel/scout

Added this in the config/app.php configuration file:

Laravel\Scout\ScoutServiceProvider::class,

Finally

php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"

The problem is it doesn't publish the scout.php file in the config folder...

4 Answers
Related