id(); $table->string('name'); $table->string('email')->unique(); $table->string('mobile')->unique(); $table->boolean('is_admin')->default(0); $table->string('password'); $table->timestamp('email_verified_at')->nullable(); $table->string('profile_photo_path', 2048)->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };