id(); $table->text('name'); $table->string('slug',128)->unique(); $table->text('subtitle')->nullable(); $table->text('description')->nullable(); $table->integer('sort')->default(0); $table->string('image',2048)->nullable()->default(null); $table->string('bg',2048)->nullable()->default(null); $table->unsignedInteger('parent_id')->nullable()->default(null)->index(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('categories'); } };