I want to set headers as array(\'Cache-Control\'=>\'no-cache, no-store, max-age=0, must-revalidate\',\'Pragma\'=>\'no-cache\',\'Expires\'=>\'Fri, 01 Jan 1990
array(\'Cache-Control\'=>\'no-cache, no-store, max-age=0, must-revalidate\',\'Pragma\'=>\'no-cache\',\'Expires\'=>\'Fri, 01 Jan 1990
In Laravel 5 you can change /public/index.php line 55 and set your header for entire app:
$response->send();
with:
$response->header('Content-Type','text/html; charset=ISO-8859-1')->send();
for essample.