open docs in terminal using laravel v9.3 & above

In this short tutorial we will see how to save your time using laravel 9.3 with laravel new docs command. laravel 9.3v provide new feature "php artisan docs" command it will help to find Validation, email, starter kit etc. let see


Create Laravel Project

Run below command in your terminal to create laravel project.

composer create-project laravel/laravel laravel-v9.3  


Run laravel 9.3v new command

php artisan docs  

it will show all available search docs.

Which page would you like to open? [Installation]
 Release Notes ...................................................................................... release notes  
 Upgrade Guide ...................................................................................... upgrade guide  
 Contribution Guide ............................................................................ contribution guide  
 Installation ........................................................................................ installation  
 Configuration ...................................................................................... configuration  
 Directory Structure .......................................................................... directory structure  
 Frontend ................................................................................................ frontend  
 Starter Kits ........................................................................................ starter kits  
 Deployment ............................................................................................ deployment  
 Request Lifecycle .............................................................................. request lifecycle  
 Service Container .............................................................................. service container  
 Service Providers .............................................................................. service providers  
 Facades .................................................................................................. facades  
 Routing .................................................................................................. routing  
 Middleware ............................................................................................ middleware  
 CSRF Protection .................................................................................. csrf protection  
 Controllers .......................................................................................... controllers  
 HTTP Requests ...................................................................................... http requests  
 HTTP Responses .................................................................................... http responses  
 Views ...................................................................................................... views  
 Blade Templates .................................................................................. blade templates  
 Bundling Assets (Vite) .................................................................... bundling assets (vite)  
 URL Generation .................................................................................... url generation  
 HTTP Session ........................................................................................ http session  
 Validation ............................................................................................ validation  
 Error Handling .................................................................................... error handling  
 Logging .................................................................................................. logging  
 Artisan Console .................................................................................. artisan console  
 Broadcasting ........................................................................................ broadcasting  
 Cache ...................................................................................................... cache  
 Collections .......................................................................................... collections  
 Contracts .............................................................................................. contracts  
 Events .................................................................................................... events  
 File Storage ........................................................................................ file storage  
 Helpers .................................................................................................. helpers  
 HTTP Client .......................................................................................... http client  
 Localization ........................................................................................ localization  
 Mail ........................................................................................................ mail  
 Notifications ...................................................................................... notifications  
 Package Development .......................................................................... package development  
 Queues .................................................................................................... queues  
 Rate Limiting ...................................................................................... rate limiting  
 Task Scheduling .................................................................................. task scheduling  
 Authentication .................................................................................... authentication  
 Authorization ...................................................................................... authorization  
 Email Verification ............................................................................ email verification  
 Encryption ............................................................................................ encryption  
 Hashing .................................................................................................. hashing  
 Resetting Passwords .......................................................................... resetting passwords  
 Database: Getting Started .............................................................. database: getting started  
 Database: Query Builder .................................................................. database: query builder  
 Database: Pagination ........................................................................ database: pagination  
 Database: Migrations ........................................................................ database: migrations  
 Database: Seeding .............................................................................. database: seeding  
 Redis ...................................................................................................... redis  
 Eloquent: Getting Started .............................................................. eloquent: getting started  
 Eloquent: Relationships .................................................................. eloquent: relationships  
 Eloquent: Collections ...................................................................... eloquent: collections  
 Eloquent: Mutators & Casting ........................................................ eloquent: mutators & casting  
 Eloquent: API Resources .................................................................. eloquent: api resources  
 Eloquent: Serialization .................................................................. eloquent: serialization  
 Testing: Getting Started ................................................................ testing: getting started  
 HTTP Tests ............................................................................................ http tests  
 Console Tests ...................................................................................... console tests  
 Laravel Dusk ........................................................................................ laravel dusk  
 Database Testing ................................................................................ database testing  
 Mocking .................................................................................................. mocking  
 Laravel Cashier (Stripe) ................................................................ laravel cashier (stripe)  
 Laravel Cashier (Paddle) ................................................................ laravel cashier (paddle)  
 Laravel Envoy ...................................................................................... laravel envoy  
 Laravel Fortify .................................................................................. laravel fortify  
 Laravel Homestead .............................................................................. laravel homestead  
 Laravel Horizon .................................................................................. laravel horizon  
 Laravel Mix .......................................................................................... laravel mix  
 Laravel Octane .................................................................................... laravel octane  
 Laravel Passport ................................................................................ laravel passport  
 Laravel Pint ........................................................................................ laravel pint  
 Laravel Sail ........................................................................................ laravel sail  
 Laravel Sanctum .................................................................................. laravel sanctum  
 Laravel Scout ...................................................................................... laravel scout  
 Laravel Socialite .............................................................................. laravel socialite  
 Laravel Telescope .............................................................................. laravel telescope  
 Laravel Valet ...................................................................................... laravel valet  
❯ Laravel Telescope


lets search laravel starter kit using laravel v9.3 command.

php artisan docs Starter Kits
INFO  Opening the docs to: https://laravel.com/docs/9.x/starter-kits.

You can see next tab add in your browser with laravel doc starter kit.

laravel v9.3 new doc command

laravel v9.3 new doc command