Issue is caused by default xdebug.max_nesting_level
which is 100.
The workaround for now is to increase xdebug.max_nesting_level
to a certain level say 200 or 300 or 400
I fixed mine by increasing xdebug.max_nesting_level to 120, by adding the line below to bootstrap/autoload.php
in Laravel 5.1
ini_set('xdebug.max_nesting_level', 120);
.........
define('LARAVEL_START', microtime(true));
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…