PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 88 bytes) in /var/www/html/Xogonet/vendor/laravel/framework/src/Illuminate/Database/Connection.php on line 323
I tried to catch this error in Laravel exception handler class.but couldn't able to.
also i tried with using try / catch blocks
try {
$query = "some select query which give huge data";
}catch (Exception $e){
Log::info('Error '. $e);
}
Please get me out from this issues.