'what could be resulting to this error? Class 'Illuminate\Support\Facades\view' not found [closed]

the website was working well on localhost but brought this error on hosting online. Class 'Illuminate\Support\Facades\view' not found



Solution 1:[1]

This might be cause the difference of language level. Check what PHP version you have on hosting and what is the version on your local machine.

Mainly you should keep convention as it's declared so use class View starting from an uppercase.

You maybe using the view() function and accidentialy include the use Illuminate\Support\Facades\view in some file. Just delete it - it also should resolve the problem.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Filip Koblański