Localizing Resource URIs
By default, Route::resource
will create resource URIs using English verbs. If you need to localize the create
and edit
action verbs, you may use the Route::resourceVerbs
method. This may be done in the boot
method of your AppServiceProvider
:
use Illuminate\Support\Facades\Route;
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Route::resourceVerbs([
'create' => 'crear',
'edit' => 'editar',
]);
}
Once the verbs have been customized, a resource route registration such as Route::resource('fotos', 'PhotoController')
will produce the following URIs:
/fotos/crear
/fotos/{foto}/editar
To know more about creating resource controller visit our Bajarangisoft site.