Searching mobile frontend

This commit is contained in:
Peter Papp
2021-04-22 16:40:45 +02:00
parent 90f91c47ce
commit 894cef5d66
8 changed files with 478 additions and 1 deletions
@@ -16,7 +16,7 @@ class CreateInvoicesTable extends Migration
Schema::create('invoices', function (Blueprint $table) {
$table->uuid('id')->primary()->index();
$table->uuid('user_id')->index();
$table->uuid('client_id')->index();
$table->uuid('client_id')->nullable()->index();
$table->enum('invoice_type', ['regular-invoice', 'advance-invoice']);