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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-route-helpers

Laravel route helpers

Build Status

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:

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!


All versions of laravel-route-helpers with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3
laravel/framework Version ^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package paulhenri-l/laravel-route-helpers contains the following files

Loading the files please wait ....