id(); $table->string("name"); $table->string("description")->nullable(); $table->date("in_date"); $table->integer("quantity"); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('items'); } };