Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

rurusteve's avatar

PHP Fatal error: Uncaught BadMethodCallException: Method Illuminate\View\View::send does not exist

I put my laravel on cPanel, it works a weeks ago. All of the configuration are working, and then suddenly when I tried to access the site again. This error appears on errors log, with HTTP ERROR 500. I really don't know what happen.

0 likes
2 replies
bobbybouwmann's avatar

A view doesn't have a send method. You probably mixed up emails with views?

Look in your code for something like

View::send(

// Or
view()->send(

You will probably find something that is not correct!

If you use an old version of Laravel, this might be the issue: https://github.com/laravel/framework/issues/7034

Please or to participate in this conversation.