Skip to content

Instantly share code, notes, and snippets.

View robbinbenard's full-sized avatar
🎮
Office Simulator

Robbin Benard robbinbenard

🎮
Office Simulator
View GitHub Profile
@robbinbenard
robbinbenard / Throttle.php
Created October 26, 2023 13:53 — forked from stevebauman/Throttle.php
Laravel Throttle Validation Rule
<?php
namespace App\Rules;
use Illuminate\Http\Request;
use Illuminate\Cache\RateLimiter;
use Illuminate\Contracts\Validation\Rule;
class Throttle implements Rule
{