increments('id'); $table->date('invoice_date'); $table->date('due_date'); $table->string('invoice_number'); $table->string('reference_number')->nullable(); $table->string('status'); $table->string('paid_status'); $table->string('tax_per_item'); $table->string('discount_per_item'); $table->text('notes')->nullable(); $table->string('discount_type')->nullable(); $table->decimal('discount', 15, 2)->nullable(); $table->unsignedBigInteger('discount_val')->nullable(); $table->unsignedBigInteger('sub_total'); $table->unsignedBigInteger('total'); $table->unsignedBigInteger('tax'); $table->unsignedBigInteger('due_amount'); $table->boolean('sent')->default(false); $table->boolean('viewed')->default(false); $table->string('unique_hash')->nullable(); $table->integer('user_id')->unsigned()->nullable(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->integer('company_id')->unsigned()->nullable(); $table->foreign('company_id')->references('id')->on('companies')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoices'); } }