PHP code example of ysocode / plum

1. Go to this page and download the library: Download ysocode/plum 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/ */

    

ysocode / plum example snippets


Route::resource('contacts', ContactController::class);

Route::get('/users/{user}', UserController::class)->name('users.show');

Route::get('/users/{user}/profiles/{profile}', UserProfileController::class)->name('users.profiles.show');

Route::get('/search', SearchController::class)->name('search');

use App\Models\Post;
 
Route::get('/posts/{post:slug}', function (Post $post) {
    return $post;
})->name('posts.show');

/**
 * Get the route key for the model.
 */
public function getRouteKeyName(): string
{
    return 'slug';
}
js
route('users.show', {user: 8847}); // https://plum.test/users/8847
js
route('users.profiles.show', {user: 8847, profile: 'admin'}); // https://plum.test/users/8847/profiles/admin