需要链接Laravel中的页面

Im a newbie in laravel. I went though the route documentation on the Laravel site. Thing I want to create a new tab in my menu, I have added the tab but cannot seem to link it. When i Read on the laravels site, it said you need to edit routes.php file, and so I did, but it didnt seem to work. Im sure im missing something out. Could you please help me? The website is on jfgfestival.com I want to add the tab after Press.

Im running Laravel 4.1

This is what I have added to routes.php

Route::get('videos', function()
{
    $featured_images = Featured::get();
    $categories = Category::get();
    return View::make('home.videos')->with(compact('featured_videos', 'categories'));
});

Also this new page that Im creating is for a video gallery. Does any one know how to create a video gallery in laravel? I cannot seem to find any good references/ tutorials for the same.

Thank you again

Make sure that you have the view file you specified set up. For this route it should be in:

app/views/home/videos.blade.php