id(); $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('email')->unique()->nullable(); $table->string('mobile')->unique()->nullable(); $table->string('password'); $table->string('avatar')->nullable(); $table->uuid('uuid')->unique(); $table->boolean('is_admin')->default(false); $table->unsignedBigInteger('wallet')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };