There\'s findOrFail() method which throws 404 if nothing was found, e.g.:
findOrFail()
User::findOrFail(1);
Try it like this:
Page::where('slug', '=', 'about')->firstOrFail();