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

// To install and use a specific version, you can enter it at the end of the command.
// For example using version 5.8 ==>
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();
});

Tags:

Php Example