Resource Controllers: Localizing Resource URIs
Use Illuminate\Support\Facades\Route; /**
* Bootstrap any application services.
*
* @return void
*/ public function boot()
{ Route::resourceVerbs([ 'create' => 'crear', 'edit' => 'editar', ]); } If you need to localize the create and edit action verbs, you may use the Route::resourceVerbs method.
Semantic portal