id(); $table->integer('customerId'); $table->float('bill'); $table->string('address'); $table->string('name'); $table->string('phone'); $table->string('status'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('orders'); } };