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
You can also run only Environment command.
php artisan about --only=environment
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
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
Top comments (0)