Changing the HTTP Status Code | Laravel 5: Redirecting Users to the Previous Page With back
To change the status code of the response simply supply an argument for the $status parameter: 1 2 // Redirect back with a "301: Moved Permanently" status code. 3 return back ( 301 ) ; 4 5 // Redirect back with a "307: Temporary Redirect" status...