updated readme

This commit is contained in:
Jack Goh
2018-06-12 09:46:42 +08:00
parent 929266a09c
commit a3cb5344ee
9 changed files with 449 additions and 40 deletions
@@ -26,9 +26,11 @@ class ForgotPasswordController extends Controller
* @param string $response
* @return \Illuminate\Http\RedirectResponse
*/
protected function sendResetLinkResponse($response)
{
return ['status' => trans($response)];
protected function sendResetLinkEmail($response)
{
$link = "http://localhost:8000/?token=123";
return $link;
//return ['status' => trans($response)];
}
/**