Larvel 4 では、ネストされたリソース コントローラーをセットアップしようとしています。
routes.phpで:
Route::resource('admin/photo', 'Controllers\\Admin\\PhotoController');
app\controllers\Admin\PhotoController.php内:
<?php namespace Controllers\Admin;
use Illuminate\Routing\Controllers\Controller;
class PhotoController extends Controller {
    /**
     * Display a listing of the resource.
     *
     * @return Response
     */
    public function index()
    {
        return 'index';
    }
    /**
     * Show the form for creating a new resource.
     *
     * @return Response
     */
    public function create()
    {
        //
    }
    /**
     * Store a newly created resource in storage.
     *
     * @return Response
     */
    public function store()
    {
        //
    }
    /**
     * Display the specified resource.
     *
     * @return Response
     */
    public function show($id)
    {
        return $id;
    }
    /**
     * Show the form for editing the specified resource.
     *
     * @return Response
     */
    public function edit($id)
    {
        return "edit $id";
    }
    /**
     * Update the specified resource in storage.
     *
     * @return Response
     */
    public function update($id)
    {
        //
    }
    /**
     * Remove the specified resource from storage.
     *
     * @return Response
     */
    public function destroy($id)
    {
        //
    }
}
index (/admin/photo GET)、create (/admin/photo/create)、store (/admin/photo POST) アクションは正常に動作しますが、editとshowではなく、ページが見つかりません 404 ステータスが表示されます。
管理者ルート パスを削除しても機能します。
admin/photo のようなネストされたパスで動作するように Route::resource コントローラーをセットアップする方法を誰か教えてもらえますか?