id(); $table->string('name'); $table->string('sku')->unique(); $table->string('barcode')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bundles'); } };