id(); $table->text('bio'); $table->string('location'); $table->string('phone')->nullable(); $table->boolean('verified')->default(false); $table->boolean('active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('brokers'); } };