I have a form that I upload. And sometimes the upload file is large. My site is on AWS using Load Balancer.
Load Balancer expects a response from the request at a given time. However, the request is POST.
How do I start on blade what is being done?
In traditional PHP I would use ob_flush()
, flush()
.
But in Laravel I could not reproduce that.