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