- Invoice listing in frontend

This commit is contained in:
Peter Papp
2021-04-21 16:53:39 +02:00
parent 5a9583be5b
commit eae212ac5d
22 changed files with 279 additions and 99 deletions

View File

@@ -18,7 +18,7 @@ class CreateInvoicesTable extends Migration
$table->uuid('user_id')->index();
$table->uuid('client_id')->index();
$table->enum('invoice_type', ['invoice', 'advance_invoice']);
$table->enum('invoice_type', ['regular_invoice', 'advance_invoice']);
$table->text('invoice_number')->nullable();
$table->text('variable_number')->nullable();