Reputation: 2711
in my views/errors/ folder I have several files: 404.blade.php 503.blade.php
In L5 we can service any error by just putting a file with the error number to the directory.
My problem: how to service this error by a error page:
BadMethodCallException in compiled.php line 8273:
Method [int_face] does not exist.
As of now I get the
Whoops, looks like something went wrong.
Thx
Upvotes: 1
Views: 327
Reputation: 153150
Whoops, looks like something went wrong.
usually is a Error code 500.
You can just create a 500.blade.php
file.
Upvotes: 1