id(); $table->string('name'); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->string('address')->nullable(); $table->string('rfc')->unique()->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clients'); } };