[Vuejs]-Faster large data exports in laravel to avoid timeouts

0👍

just put this on start of the function

    ini_set(max_execution_time, 84000); //84000 is in seconds

this will override the laravel inbuild script runtime max value.

Leave a comment