Download the PHP package paulhenri-l/laravel-route-helpers without Composer
On this page you can find all versions of the php package paulhenri-l/laravel-route-helpers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download paulhenri-l/laravel-route-helpers
More information about paulhenri-l/laravel-route-helpers
Files in paulhenri-l/laravel-route-helpers
Package laravel-route-helpers
Short Description Rails like route helpers to easily generate paths to your laravel controllers
License MIT
Informations about the package laravel-route-helpers
Laravel route helpers
Route helpers are simple function that will generate paths to your application resources.
For instance if you have a PostsController
you'll get these helpers:
posts_path()
post_path()
new_post_path()
edit_post_path()
Which can in turn be used in your views/app like so:
The end goal is to leverage autocompletion in order to rapidly create path to our resources while not having to remember the exact route name.
Installation
You can install this package using composer
Usage
Register your routes just as usual but give them names. On the next application boot the helpers will be generated and loaded.
Your route names should be one of the 7 restful names used by laravel (*.index, *.create, *.store, *.show, *.edit, *.update and *.destroy)
Your route names should only contain alpha numeric characters, dots and underscores any route that does not comply to this pattern will not get helpers generated for it.
This will generate these helpers:
Nested resources
If you are nesting your resources the generated helpers will keep the nesting.
Irregular names
If you are using irregular names for your resources, the correct singular form will be used for the helpers.
If this tool cannot guess the correct singular form for your route name you'll have to configure it: https://stackoverflow.com/questions/25646229/laravel-custom-inflection
Singular resources
If you have singular resources you cannot use the index function as it would create conflicts between the plural and singular helpers.
Helpers works just like the route function
Compile the helpers file manually
When you run your application using the local
environement the helpers file
will get recompiled whenever you change your routes file.
In any other environment the helpers file if not present will be generated on the first boot of your application.
You can also manually launch the generation of the helpers file by calling this artisan command.
Contributing
If you have any questions about how to use this library feel free to open an issue.
If you think that the documentation or the code could be improved in any way open a PR and I'll happily review it!