id(); $table->foreignId('form_id')->constrained('web_forms')->cascadeOnDelete(); $table->json('data'); $table->string('ip', 45)->nullable(); $table->timestamp('read_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('leads'); } };