id(); $table->foreignId('company_id')->constrained()->cascadeOnDelete(); $table->string('nombre'); $table->string('email')->nullable(); $table->string('telefono')->nullable(); $table->text('direccion')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clientes'); } };