Laravel error Allowed memory size of 134217728 bytes exhausted (tried to allocate 23085056 bytes)
This error means that the available memory is small but the data you want to store in memory is large. You can try by adding memory in php.ini
from
memory_limit = 128M
to
memory_limit = 512M
The above is the detailed content of Laravel Allowed memory size of bytes exhausted (tried to allocate bytes). For more information, please follow other related articles on the PHP Chinese website!