LARAVEL Fatal Error Exception : Allowed memory size of 134217728 bytes exhausted (tried to allocate 10489856 bytes)

skadevz picture skadevz · Aug 30, 2017 · Viewed 10.6k times · Source

i want to run this code

$late = Attendance::whereUserType(5)
         ->where('datetime_in', '!=', null)
         ->where(DB::connection('attendance')
         ->raw('DATE(created_at)'), date('Y-m-d'))
         ->orderBy('user_id')->get()->take(10);

but i got an error like in the title said. When i change the memory_limit to 512M, my browser is lag. I'm using 16K+ data for testing, is it ok ?? And what is the problem ??

Answer

Cengkuru Michael picture Cengkuru Michael · Oct 13, 2017

Try to add this on top of the script

ini_set('memory_limit','512M');

Your query could be timing out