Skip to content

Instantly share code, notes, and snippets.

View shivajichalise's full-sized avatar
:shipit:
depressed at 0.0.0.0

Shivaji Chalise shivajichalise

:shipit:
depressed at 0.0.0.0
View GitHub Profile
@shivajichalise
shivajichalise / AttemptLoginAction.php
Created May 21, 2025 06:07
Rate limiting with Exponential Backoff in Laravel
<?php
declare(strict_types=1);
namespace App\Actions;
use App\Models\User;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Hash;
use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException;