id(); $table->text('path'); $table->text('name'); $table->foreignId('category_id') ->nullable()->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('categories'); } }