increments('id'); $table->char('invoice_no', 8)->unique(); $table->text('items'); $table->string('customer'); $table->unsignedInteger('payment'); $table->unsignedInteger('total'); $table->string('notes')->nullable(); $table->unsignedInteger('user_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('transactions'); } }