Skip to main content

How to change User’s password in Laravel

These ways to change user’s password in Laravel 

1. By Tinker
Go to source project folder and type

php artisan tinker


$user = App\User::where('email', 'admin@laravel.com')->first();

$user->password = Hash::make('123456');

$user->save();

2. By Router
You go to the router file routes/web.php and add content

1

2

3

4

5

6

7

8

9

<?php

Route::get('changepassword', function() {

    $user = App\User::where('email', 'admin@laravel.com')->first();

    $user->password = Hash::make('123456');

    $user->save();

 

    echo 'Password changed successfully.';

});

?>


And the run on your browser to change password with url
YOUR_DOMAIN_URL/changepassword

Comments

Popular posts from this blog

Sample VS code setting

  When you are a software developer, you need to configure your IDE working with most convinience for your working, bellow is a sample code snippet to config your IDE {   "diffEditor.ignoreTrimWhitespace" : false ,   "javascript.updateImportsOnFileMove.enabled" : "always" ,   "[typescriptreact]" : {       "editor.defaultFormatter" : "esbenp.prettier-vscode"   },   "editor.formatOnPaste" : true ,   "workbench.settings.applyToAllProfiles" : [],   "editor.tabSize" : 2 ,   "redhat.telemetry.enabled" : true ,   "editor.codeActionsOnSave" : {       },   // "editor.codeActionsOnSave": {   //   "source.fixAll": "explicit",   //   "source.fixAll.eslint": "explicit",   //   "source.organizeImports": "explicit",   //   "source.sortMembers": "explicit",   //   "javascript.showUnused": "...

Docker Compose: Node.js Express and MongoDB example

  Docker   provides lightweight containers to run services in isolation from our infrastructure so we can deliver software quickly. In this tutorial, I will show you how to dockerize Nodejs Express and MongoDB example using   Docker Compose .