How to know Laravel version and where is it defined?
Is Laravel version is defined inside my application directory or somewhere in global server side directory?
If you want to know the user version in your code, then you can use using app() helper function
app()
app()->version();
It is defined in this file ../src/Illuminate/Foundation/Application.php
../src/Illuminate/Foundation/Application.php
Hope it will help :)