Is it possible to create schemas automatically in the database when xampp is turning on? There is no information about it in the Laravel documentation, documentation says only how to do it manually by writing the command php artisan migrate.
There's no way out of the box to automatically run migrations based on your webserver status change. Continuous integration (Jenkis, TravisCI, etc.) can do this by setting jobs (git pull ..., followed by php artisan migrate, etc.), but that is quite a broad concept.
git pull ..., followed byphp artisan migrate, etc.), but that is quite a broad concept.