My laravel installation works fine most of the time. But when I need to compute a large amount of data, laravel returns a blank view after 60sec instead of a HTML view.
I have in my code:
set_time_limit(0)
Moreover, using Log::info('debug'), I can see the script is still executed even if laravel has returned a blank page.
So I guess Laravel has some timeout to return a view before 60 seconds, even if the script is still running.
Do you have any idea how to fix this?