id(); $table->timestamps(); $table->text('name'); $table->text('type'); $table->text('brand'); $table->text('model'); $table->integer('price'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('components'); } };