6
をルーティングします。 PHPファイル:私は運と私のroutes.phpのファイルに以下のすべての可能性を試してみたLaravel RESTfulなコントローラは、私が私のURLにアクセスしようとしている
<?php
class DashboardController extends BaseController {
public function __construct() {
$this->beforeFilter('auth');
}
/**
* Supplier's dashboard screen
*
*/
public function getSupplier()
{
$this->layout->content = View::make('user.dashboard.supplier');
}
/**
* Sales dashboard screen
*
*/
public function getSales()
{
$this->layout->content = View::make('user.dashboard.sales');
}
/**
* Admin's dashboard screen
*
*/
public function getAdmin()
{
$this->layout->content = View::make('user.dashboard.admin');
}
}
:
Route::any('user/dash/(:any)', array('uses' => 'DashboardController'));
Route::controller('user/dash', 'DashboardController');
Route::group(array('prefix' => 'user', 'before' => 'auth'), function()
{
Route::controller('dash', 'DashboardController');
});
他に提案がありますか?私は、これを成功させる方法についてはあまりよく分かりません。これらのルートすべてでエラーメッセージが表示されます。
コントローラのメソッドが見つかりません。もっとたくさんの周り掘りや記事の負荷を読んだ後、[OK]を
Upvotedリンクはここ – kJamesy
@kJamesyがアーカイブからリンクされ壊れているが、http://web.archive.org/web/20130912011338/ http://laravel.io/topic/30/routes-first-in-first-out – Stranger