I have a bug in Laravel occurring only on CentOS servers (at least, I never saw on Debian...).
It is about large Blade templates applied to Blade Components: if the length of the template's string, combined with the path of the views' folder, is longer than PHP_MAXPATHLEN chars, this call of file_exists() fails with an error like File name is longer than the maximum allowed path length on this platform (4096).
The issue is exactly here, has been discussed here and my pull request to fix it has been rejected (!).
So: is there any flag, configuration or whatever that may be in the PHP-FPM package of CentOS that make file_exists() fail with a fatal error when a path longer than PHP_MAXPATHLEN chars is used?