Download the PHP package amdadulhaq/route-resource-paths-laravel without Composer
On this page you can find all versions of the php package amdadulhaq/route-resource-paths-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download amdadulhaq/route-resource-paths-laravel
More information about amdadulhaq/route-resource-paths-laravel
Files in amdadulhaq/route-resource-paths-laravel
Package route-resource-paths-laravel
Short Description A Laravel package that provides a resource paths registrar.
License MIT
Informations about the package route-resource-paths-laravel
Route Resource Paths Laravel Package
This Laravel package allows you to define custom paths for create and edit routes in resource controllers. It extends the functionality of Laravel's resource routing by providing macros to set these paths globally or for specific resources.
Features
Set global custom paths for create and edit actions across all resource routes. Customize paths individually for each resource route. Works seamlessly with both Route::resource() and Route::resources() methods.
Installation
You can install the package via composer:
Once installed, the service provider will be registered automatically by Laravel.
Configuration
No additional configuration is required. The package uses Laravel's built-in service container to bind and replace the default resource registrar.
Usage
Setting Global Paths
To set custom paths for the create and edit actions that will apply globally to all resource routes, use the Route::resourcePaths() method:
After setting these global paths, all resource routes defined using Route::resource() will use these custom paths instead of the default ones.
Using Global Paths with Route::resource()
The global paths will automatically be applied to all resource controllers like this:
This will generate routes such as:
GET /posts/add instead of GET /posts/create
GET /posts/{post}/change instead of GET /posts/{post}/edit
Using Global Paths with Route::resources()
You can also use the global paths when registering multiple resource controllers at once:
This will apply the same custom paths to both photos and posts resource routes.
Setting Custom Paths for Specific Resources
If you want to set custom paths for a specific resource, you can do so directly when defining the resource:
This will only affect the routes for the users resource:
GET /users/add instead of GET /users/create GET /users/{user}/change instead of GET /users/{user}/edit
For Resource
Usage Example for Singleton Paths
To use the new Route::singletonPaths() method for setting global singleton paths, you can do the following:
This will generate the following routes for the ProfileController singleton resource:
GET /profile/setup instead of GET /profile/create
GET /profile/modify instead of GET /profile/edit
Credits
- Amdadul Haq
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Contributing
If you find any issues or have suggestions for improvements, feel free to create a pull request or open an issue on the GitHub repository.