id(); $table->string('customer_name'); $table->string('customer_mail'); $table->string('company'); $table->string('address'); $table->string('item'); $table->string('product_name'); $table->string('price'); $table->integer('quantity'); $table->string('total'); $table->string('payment'); $table->string('due'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoices'); } }