id(); $table->string('name'); $table->decimal('quantity', 10, 2)->default(0); $table->string('unit'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('spices'); } };