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)