I uploaded my website to Digital Ocean and it's working fine except for some routes. For example, when I navigate to /admin/users I get the view, but when I navigate to /admin/jobs I get the default 404 page. I am trying to debug this but I can't seem to figure out where the log files are for 404 redirects. I checked /storage/logs but it's empty.
@SNAPEY - I fixed the problem. It was because of a Model::firstOrFail() query in my controller when it had no data to work with. I was hoping for a more detailed error message than just the 404 page.
Interesting point. I think its because its a quite common use case and failing in this way is not considered an uncaught error worthy of logging. There is so much crap traffic on the internet, you woukd soon be complaining about your logs being full of random stuff.
Its actually down to your design how it should handle missing resources.