PHP - 重定向到新添加项目的页面?

How would I redirect to the page of the newly added item?

For example, I have 5 page list of items. After I successfully added a new item, I want it to redirect to the page where it should be located.

Is it possible? How?

<?php

class PostController extends BaseController
{

    ...

    public function store()
    {
        $input = Input::all();

        // do validation, etc...

        $post = Post::create($input);

        return Redirect::to("/posts/{$post->id}/detail");
    }

    ...

}

Post is Eloquent model here. create method stores data in database and return newly created object, which is assigned back to $post variable. All it's properties are accessible from this point.