increments('id'); $table->string('name'); $table->string('slug')->indexed(); $table->text('description'); $table->nullableTimestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('books'); } };