id(); $table->string('title'); $table->string('url')->nullable(); $table->string('icon')->nullable(); $table->unsignedBigInteger('parent_id')->nullable(); $table->integer('order')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('menus'); } };