Route [admin / CountryController.store]未在Laravel中定义

时间:2018-06-04 10:16:31

标签: laravel laravel-5.5 laravel-routing

我的CountryController位于具有store功能的管理员文件夹中。

Web.php是: -

Route::prefix('admin')->group(function () {
Route::resource('country', 'admin\CountryController');});

HTML代码是: -

<form method="post" action="{{ route('admin/CountryController.store') }}">

显示错误: - Route [admin/CountryController.store] not defined. (View: C:\xampp\htdocs\happyvivah\resources\views\admin\country.blade.php)

1 个答案:

答案 0 :(得分:1)

在CMD中使用'php artisan route:list'命令。它将显示所有路线的名称。它将显示路线名称'country.store'。

所以用route('country.store')替换route('admin / CountryController.store')之后就可以了。