PHP code example of hobbii / laravel-cognito-client

1. Go to this page and download the library: Download hobbii/laravel-cognito-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hobbii / laravel-cognito-client example snippets




use Illuminate\Http\Request;
use Hobbii\LaravelCognitoClient\Facades\Cognito;

class AuthController extends Controller
{
    public function login(Request $request)
    {
        $authSession = Cognito::authenticate($request->email, $request->password);
        
        if ($authSession->success()) {
            return redirect()->route('dashboard');
        }
        
        return back()->withErrors([
            'email' => 'Invalid email or password!'
        ]);
    }
}
shell
php artisan vendor:publish --provider="Hobbii\LaravelCognitoClient\CognitoClientServiceProvider" --tag=config