Components\Posts\Controllers\Backend\PostCategoriesController::show PHP Метод

show() публичный Метод

Display the specified post.
public show ( integer $id ) : Response
$id integer
Результат Response
    public function show($id)
    {
        $post = Category::findOrFail($id);
        if (!$post) {
            App::abort('404');
        }
        $this->layout->title = $post->title;
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.categories.show')->with('post', $post);
    }