laravel 8 Class 'Illuminate\Support\Facades' not found (View: /var/www/html/schoole_mangement_system/resources/views/html/user/userlist.blade.php) code example
Example: 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;