mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-25 07:14:22 +00:00
updated readme
This commit is contained in:
@@ -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)];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -42,4 +42,8 @@ class ResetPasswordController extends Controller
|
||||
{
|
||||
return response()->json(['email' => trans($response)], 400);
|
||||
}
|
||||
|
||||
protected function showResetForm(){
|
||||
return view('index');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -115,5 +115,6 @@ class BookingController extends Controller
|
||||
$booking->delete($book_id);
|
||||
return response()->json($book_id, 204);
|
||||
}
|
||||
// TODO : cancel function
|
||||
|
||||
// TODO : cancel booking feature
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user