独学者Fossa

独学していることなど

制作中(まとめ)

まとめてみます。

データベースの定義

使用したデータベースは、SQLite3です。

<?php

<省略>

Schema::connection($this->dbName)->create($tableName, function (Blueprint $table) {
    $table->increments('id');
    $table->string('hatena_id')->nullable();
    $table->string('nickname')->nullable();
    $table->timestamp('datetime_utc')->nullable(); // 読者になっていただいた日(標準時)
    $table->boolean('my_reader')->default(true); // 読者様ならtrue
});

データのインポート

fossa-hobby.hatenablog.com

fossa-hobby.hatenablog.com

一覧画面

fossa-hobby.hatenablog.com

検索画面

fossa-hobby.hatenablog.com

編集画面

fossa-hobby.hatenablog.com