Answers for "Class 'Illuminate\Support\Facades\RateLimiter' not found {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Class 'Illuminate\\Support\\Facades\\RateLimiter'"

PHP
1

class 'illuminate support facades input' not found laravel 7

In Laravel 5.2 Input:: is replaced with Request::

use Request::

Add to the top of Controller or any other Class

use Illuminate\Support\Facades\Request;
Posted by: Guest on November-20-2020

Code answers related to "Class 'Illuminate\Support\Facades\RateLimiter' not found {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Class 'Illuminate\\Support\\Facades\\RateLimiter'"

Browse Popular Code Answers by Language