Laravel most commonly used commands and code references

To create a projectcomposer create-project --prefer-dist laravel/laravel blog Databse Initial table setupphp artisan migrate To avoid key long error ( AppServiceProvider )use Illuminate\Support\Facades\Schema;Schema::defaultStringLength(191);Authentication Scaffoldingcomposer require laravel/ui To create necessary controllers, routes and views for authphp artisan ui bootstrap --auth To compile...