id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->enum('role', ['client', 'employee', 'admin'])->default('client'); $table->string('phone')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('users'); } };