I cannot find info for redirecting as 301/302 in the Laravel docs.
In my routes.php file I use:
Route::get(\'foo\', function(){ return Redirect::to(
Whenever you are unsure, you can have a look at Laravel's API documentation with the source code. The Redirector class defines a $status = 302 as default value.
$status = 302
You can define the status code with the to() method:
to()
Route::get('foo', function(){ return Redirect::to('/bar', 301); });