PHP code example of arifmahmudrana / laravel-resource-route-wildcard-alias

1. Go to this page and download the library: Download arifmahmudrana/laravel-resource-route-wildcard-alias library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

arifmahmudrana / laravel-resource-route-wildcard-alias example snippets


AriMahmudRana\laravelResourceRouteWildcardAlias\LaravelResourceRouteWildcardAliasServiceProvider::class

Route::group(['middleware' => ['web']], function () {
    Route::resource('album.photo.hello', 'PhotoController', ['alias' => ['album' => 'a', 'photo' => 'p', 'hello' => 'h']]);
});