I\'m getting this error message in my Laravel application after I upgraded to Laravel 5.1.
FatalErrorException in Dispatcher.php line 200: Maximum function n
This issue is due to xdebug extension is enabled, to fix this either you have to disable xdebug extension or edit php.ini file and change xdebug.max_nesting_level to 200 ( as by default this parameter is not included in php.ini and have to add it )
like :
xdebug.max_nesting_level=200