id(); $table->string('contact_name'); $table->string('contact_email')->unique(); $table->string('contact_phone_number'); $table->string('company_name'); $table->string('company_address'); $table->string('company_city'); $table->string('company_zip'); $table->integer('company_vat'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clients'); } };