我不断收到此错误:
Unable to find a route to match the URI: notifications/send
当我尝试访问操作发送通知时,但是当我尝试访问通知时它工作正常..
这是我的代码:
Route::set(
'notifications',
'notifications(<action>)',
array(
'action' => 'index|send'
)
)
->defaults(
array(
'controller' => 'notifications',
'action' => 'index'
)
);