id(); $table->enum('type',['AGENCY','SELFEMP','SOLEPROP'])->nullable(); /* AGENT - агент в компании, SELFEMP - самозанятый, SOLEPROP - инд. предприниматель */ $table->string('name'); $table->string('inn'); $table->string('full_name')->nullable(); $table->string('email'); $table->string('address')->nullable(); $table->string('legal_address')->nullable(); $table->json('details')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('companies'); } };