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.

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 route-resource-paths-laravel

Route Resource Paths Laravel Package

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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

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.


All versions of route-resource-paths-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/routing Version ^10.0|^11.0|^12.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 amdadulhaq/route-resource-paths-laravel contains the following files

Loading the files please wait ....