ごめん、5はまだ試してないんだw

PostController.phpを作る。
class PostController extends BaseController { // http://example.com/post

public $layout = 'template'; // これtemplate.blade.php

public function getIndex($id) // getでhttp://example.com/post/<;id>でアクセスした場合
{
$results = Post::where('id', $id)->get(); // 適当にPostモデルで定義したデータベースから値取得
$hoge = "hoge"; // 解説のために、こんなパラメータも追加

$this->layout->content = View::make('post', array( // ここでpost.blade.php
'results' => $resultsCashe,
'hoge' => $hoge
));
}

template.blade.php作る。
//なんか適当にヘッダーとか
{{@$content}}
//サイドバーとかフッターとか

post.blade.php作る。
@foreach($results as $val)
e($val->post_title); //例えば投稿のタイトルとか出力
@endforeach

全体こんな感じ