softDeletes(); }); Schema::table('books', function (Blueprint $table) { $table->softDeletes(); }); Schema::table('chapters', function (Blueprint $table) { $table->softDeletes(); }); Schema::table('pages', function (Blueprint $table) { $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('bookshelves', function (Blueprint $table) { $table->dropSoftDeletes(); }); Schema::table('books', function (Blueprint $table) { $table->dropSoftDeletes(); }); Schema::table('chapters', function (Blueprint $table) { $table->dropSoftDeletes(); }); Schema::table('pages', function (Blueprint $table) { $table->dropSoftDeletes(); }); } }