id(); $table->string('invoice_name'); $table->string('invoice_user'); $table->string('payment_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoices'); } };