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