默认情况下,Route::resource将会用英文动词创建资源URI。如果需要自定义 createedit 行为的动作名,可以在 AppServiceProviderboot 中使用 Route::resourceVerbs 方法实现:

use Illuminate\Support\Facades\Route;

/**
 * 引导任何应用服务。
 *
 * @return void
 */
public function boot()
{
    Route::resourceVerbs([
        'create' => 'new',
        'edit' => 'editar',
    ]);
}

PHPLaravel

添加新评论