id(); $table->foreignId(column: 'user_id')->references('id')->on('users'); $table->foreignId(column: 'company_id')->references('id')->on('companies')->nullable(); $table->timestamps(); }); Schema::table('agents', function (Blueprint $table) { $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('agents'); } };