I don\'t want to check my Laravel version in the command prompt (php artisan --version), but in the view itself.
php artisan --version
Like this:
you can use this code in routing file of your laravell installation
$app->get('/', function () use ($app) { return $app->version(); });
On view you will get installed version of laravell.