id(); $table->string('first_name', 250); $table->string('last_name', 250); $table->string('email', 250)->unique(); $table->string('avatar', 250); $table->string('password', 250); $table->timestamp('email_verified_at')->nullable(); $table->rememberToken(); $table->timestamps(); }); User::create(['first_name' => 'Toner','last_name' => 'Front','email' => 'admin@themesbrand.com','password' => Hash::make('12345678'),'email_verified_at'=>'2022-01-02 17:04:58','avatar' => 'avatar-1.jpg','created_at' => now(),]); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };