1. Go to this page and download the library: Download aporat/laravel-rate-limiter 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/ */
Route::get('/api/test', function () {
return 'Hello World';
})->middleware('Aporat\RateLimiter\Laravel\Middleware\RateLimit');
use Aporat\RateLimiter\Laravel\Facades\RateLimiter;
Route::post('/submit', function (Request $request) {
RateLimiter::create($request)
->withUserId(auth()->id() ?? 'guest')
->withName('form_submission')
->withTimeInterval(3600)
->limit(5); // 5 submissions per hour
return 'Submitted!';
});
RateLimiter::blockIpAddress('192.168.1.1', 86400); // Block for 24 hours
if (RateLimiter::isIpAddressBlocked()) {
abort(403, 'Your IP is blocked.');
}
$response = new Response('OK');
RateLimiter::create($request)
->withResponse($response)
->withRateLimitHeaders()
->limit(100);
return $response; // Includes X-Rate-Limit-Limit and X-Rate-Limit-Remaining