docs(laravel): add sections

This commit is contained in:
Julien 2019-04-08 09:24:15 +02:00
parent 94fe7a0acf
commit 29e2ad39ad
1 changed files with 72 additions and 1 deletions

View File

@ -2,7 +2,7 @@
/********************************************************************************************
* 1. CLI AVAILABLE COMMANDS FOR ARTISAN
* https://laravel.com/docs/5.7/artisan
* https://laravel.com/docs/5.8/artisan
********************************************************************************************/
// 1.1. MAIN.
@ -136,3 +136,74 @@ php artisan vendor:publish // Publish any publishable assets from vendor p
php artisan view:cache // Compile all of the application's Blade templates
php artisan view:clear // Clear all compiled view files
/********************************************************************************************
* 2. REQUEST
* https://laravel.com/api/5.8/Illuminate/Http/Request.html
* https://laravel.com/docs/5.8/requests
********************************************************************************************/
/********************************************************************************************
* 3. RESPONSE
* https://laravel.com/api/5.8/Illuminate/Http/Response.html
* https://laravel.com/docs/5.8/responses
********************************************************************************************/
/********************************************************************************************
* 4. ROUTING
* https://laravel.com/docs/5.8/routing
********************************************************************************************/
/********************************************************************************************
* 5. MIDDLEWARE
* https://laravel.com/docs/5.8/middleware
********************************************************************************************/
/********************************************************************************************
* 6. CONTROLLERS
* https://laravel.com/docs/5.8/controllers
********************************************************************************************/
/********************************************************************************************
* 7. SESSION
* https://laravel.com/docs/5.8/session
********************************************************************************************/
/********************************************************************************************
* 8. URL GENERATION
* https://laravel.com/docs/5.8/urls
********************************************************************************************/
/********************************************************************************************
* 9. VALIDATION
* https://laravel.com/docs/5.8/validation
********************************************************************************************/
/********************************************************************************************
* 10. ERROR HANDLING
* https://laravel.com/docs/5.8/errors
********************************************************************************************/
/********************************************************************************************
* 11. LOGGING
* https://laravel.com/docs/5.8/logging
********************************************************************************************/