今回の発表の目的

Laravel とは

QuickStart 5.1

Routing

Model

class Task extends Model
{
    //
}

View

Migration

class CreateTasksTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('tasks', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->timestamps();
        });
    }

.env

package manager

5.1 と 5.4 の違いは?

PHP 書いててどう思う?