Create invoice form part 1.

This commit is contained in:
Peter Papp
2021-04-30 17:53:19 +02:00
parent 5167ae520e
commit 3c3e82758d
51 changed files with 1890 additions and 763 deletions

View File

@@ -32,7 +32,9 @@ class CreateInvoicesTable extends Migration
$table->dateTime('delivery_at')->nullable();
$table->dateTime('due_at')->nullable();
$table->enum('discount_type', ['percent', 'value'])->nullable();
$table->enum('discount_type', [
'percent', 'value'
])->nullable();
$table->integer('discount_rate')->nullable();
$table->text('currency');