Some work on customers view #3

This commit is contained in:
2025-11-04 13:51:31 +01:00
parent 3c2d35f458
commit 82e04acc2c
13 changed files with 154 additions and 51 deletions
+1
View File
@@ -19,6 +19,7 @@ public function definition()
'tax_id' => $this->faker->numerify('DE##########'),
'global_id' => $this->faker->numerify('############'),
'legal_registration_id' => $this->faker->numerify('##########'),
'url' => $this->faker->url(),
'email' => $this->faker->unique()->safeEmail(),
'phone' => $this->faker->phoneNumber(),
'billing_address' => [
@@ -16,6 +16,7 @@ public function up()
$table->string('tax_id', 50)->nullable();
$table->string('global_id', 50)->nullable();
$table->string('legal_registration_id', 50)->nullable();
$table->string('url', 100)->nullable();
$table->string('email', 100)->nullable();
$table->string('phone', 20)->nullable();
$table->json('billing_address')->nullable();