Laravel 4.1路由问题ErrorException路由未定义

时间:2017-11-16 10:30:30

标签: laravel routes

我正在测试按钮

Button onclick="window.location ='{{ route('books.index') }}'

返回索引页但测试另一个按钮

onclick="window.location ='{{ route('books.index2') }}'

返回错误消息( ErrorException Route [books.index2] not defined

Bookcontroller.php 中的

功能

public function index() {
    return View::make('books/bookindex');
}


public function index2() {
    return View::make('books/bookindex');
}

routes.php

中的功能
Route::resource('books', 'BookController');

为什么某些功能正在运行但是没有?可以帮助一下。谢谢。

0 个答案:

没有答案