После обновления с Laravel 4.2 до 5.0 я получаю следующее сообщение почти на каждой странице своего приложения:
InvalidArgumentException в строке UrlGenerator.php 561: Action ArticlesController @create not defined.
В моем файле routes.php у меня есть:
Route::get('articles/create', ['as' => 'articles.create', 'uses' => '[email protected]']);
Route::post('articles/create', ['as' => 'articles.create.handle', 'uses' => '[email protected]']);
И в моем контроллере:
class ArticlesController extends Controller {
public function create()
{
$input=null;
if (Input::old()) {
$input = Input::old();
}
$tagsJson = Tag::all()->toJson();
$categories = ArticleCategory::all();
return View::make('admin.articles.create', compact(array('tagsJson', 'categories', 'input')));
}
public function handleCreate()
{
$input = Input::all();
if ($input['op']=="preview") {
return redirect()->action('[email protected]')->withInput();
} else if ($input['op']=="post") {
//
}
}
}
Ошибка, которую я получаю, исходит из этой строки:
return redirect()->action('[email protected]')->withInput();
Любая помощь? Спасибо, Илиас