If you use resource controllers, but want to change URL verbs to non-English, so instead of /create
you want Spanish /crear
, you can configure it with Route::resourceVerbs()
method.
1public function boot()2{3 Route::resourceVerbs([4 'create' => 'crear',5 'edit' => 'editar',6 ]);7 //8}