steps to create laravel project code example
Example 1: create laravel 6 project using composer
composer create-project --prefer-dist laravel/laravel blog "6.*"
Example 2: laravel create project
composer create-project --prefer-dist laravel/laravel projectName "5.8.*"
Example 3: how to make website with laravel
Schema::table('users', function($table)
{
$table->create();
$table->increments('id');
$table->string('username');
$table->string('email');
$table->string('phone')->nullable();
$table->text('about');
$table->timestamps();
});