id(); $table->string('name'); $table->string('picture'); $table->string('description'); $table->float('price'); $table->integer('quantity'); $table->string('category'); $table->string('type'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('products'); } };