This article mainly introduces to you the relevant information about the friendly error reporting and display of the new features of Laravel5.5. The introduction in the article is very detailed through pictures and texts. It has certain reference and learning value for everyone's study or work. Friends who need it Let's follow the editor to learn together, I hope it can help everyone.
Laravel5.5 Get the source code
The Laravel5.5 official website has not been officially released yet, and it is expected to be in the next few days!
Developers can obtain the laravel5.5 source code through the following command:
laravel new laravel55demo --dev
Install through the command After completion, you can use
php artisan --version to view the version
Laravel5.5 friendly error page
After the version is confirmed, we use the command to start 5.5:
php artisan serve
You can see a very beautiful error page
Compared with laravel5.0 and later versions
laravel5.1 laravel5.2 laravel5.3 all have a more intuitive preview to facilitate our troubleshooting
Of course, if you have used the latest official laravel5.4 for development, the error page similar to this should be similar
Without further ado, we use the command Generate a key and look at the initial page of the project
php artisan key:generate
After generating the key, we use the command again to start the project
The above is the detailed content of Laravel5.5 new feature error reporting. For more information, please follow other related articles on the PHP Chinese website!