id(); $table->string('name'); $table->enum('gender', ['m', 'f']); $table->date('birth_date'); $table->string('address'); $table->string('phone'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('patients'); } };