id(); $table->string('unique_id', 50)->unique(); $table->string('name'); $table->string('picture')->nullable(); // store filename or URL, can be null $table->enum('gender', ['male', 'female']); $table->date('date_of_birth'); $table->string('nationality')->nullable(); $table->decimal('weight', 5, 2); // e.g., 123.45 kg max $table->decimal('height', 5, 2)->nullable(); // e.g., 250.00 cm max $table->json('contact_info')->nullable(); // phones, emails as JSON $table->json('social_media')->nullable(); // social media links as JSON $table->timestamps(); }); } public function down() { Schema::dropIfExists('members'); } }