I have a problem within my routes. here is the error meesage "Route [pages.create] not defined". this my show.blade.php:
{{ link_to_route('pages.create','page2')}}
routes.php
Route::resource('page', 'PagesController');
PagesController.php
class PagesController extends BaseController { public function index() { return View::make('pages.show'); } public function create() { return "hai"; } public function store() { // } public function show($id) { // } public function edit($id) { // } public function update($id) { // } public function destroy($id) { // } }