このエラーが発生し続けます:
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'
    )
);