$table->string('name');
$table->string('email')->unique();
$table->string('password', 60);
+ $table->string('books_display')->default('grid');
$table->rememberToken();
$table->nullableTimestamps();
});
'name' => 'Admin',
'password' => bcrypt('password'),
+ 'books_display' => 'grid',
'created_at' => \Carbon\Carbon::now()->toDateTimeString(),
'updated_at' => \Carbon\Carbon::now()->toDateTimeString()
]);