DEV Community

Cover image for How to Check Laravel 9 Project Environment
saim
saim

Posted on • Originally published at larainfo.com

How to Check Laravel 9 Project Environment

In this laravel 9 quick tutorial we will see how to check laravel 9 project environment. It like check laravel version, php version, composer version etc. We can check laravel 9 project environment using single command. php artisan about.

Laravel 9 Project Environment Command

Run below command to check laravel 9 project environment.

php artisan about
Enter fullscreen mode Exit fullscreen mode

check laravel 9 project  environment

You can also run only Environment command.

php artisan about --only=environment
Enter fullscreen mode Exit fullscreen mode

output:

Environment .........................................  
Application Name .................................... Laravel  
Laravel Version ..................................... 9.23.0  
PHP Version ......................................... 8.1.3  
Composer Version .................................... 2.4.1  
Environment ......................................... local  
Debug Mode .......................................... ENABLED  
URL ................................................. localhost  
Maintenance Mode .................................... OFF
Enter fullscreen mode Exit fullscreen mode

Buy Me A Coffee

Read Also

๐Ÿ‘‰ Tailwind CSS Halloween Buttons Tutorial Example

๐Ÿ‘‰ Tailwind CSS List Style Marker Example

๐Ÿ‘‰ Create a Google Clone UI using Tailwind CSS

๐Ÿ‘‰ Tailwind CSS Use Custom Fonts Example

๐Ÿ‘‰ Tailwind CSS Line Chart Example

๐Ÿ‘‰ Tailwind CSS Gradient Button Example

๐Ÿ‘‰ Tailwind CSS Text Gradient Example

๐Ÿ‘‰ Tailwind CSS Simple POST CRUD UI Example

๐Ÿ‘‰ Tailwind CSS Thank You Page Example

๐Ÿ‘‰ Tailwind CSS 3 Breadcrumb Example

๐Ÿ‘‰ Tailwind CSS 3D Button Example

๐Ÿ‘‰ How to Use Custom Colors in Tailwind CSS

๐Ÿ‘‰ How to Use Strike Tag (cut text) in Tailwind CSS

๐Ÿ‘‰ Tailwind CSS Headings Typography Examples

๐Ÿ‘‰ Tailwind CSS Product List Example

๐Ÿ‘‰ How to Center a Div in Tailwind CSS

Top comments (0)