bash $ laravel new project
php artisan route:list

could not google any info about it .
Laravel's default exception tracker(Facade\Ignition) registers the routes needed for the exceptions, during installation.
Thank you. Still, it feels like there's nothing about it in documentation. How to disable it before deployment.? from what i can gather it allows for running scripts through GET ?
Ignition is open source on github (https://github.com/facade/ignition), so you can see exactly what's going on if you'd like. It's the app that powers Laravel's error pages for development. I don't think I'd disable unless you want to go back to using the package that was used previously.
You shouldn't be deploying Ignition into a production environment. ensure it's only a devDependency.
See the answers by @devcircus and @SlyDave
Thanks
Most helpful comment
You shouldn't be deploying Ignition into a production environment. ensure it's only a devDependency.