Download the PHP package ysocode/plum without Composer
On this page you can find all versions of the php package ysocode/plum. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package plum
Short Description Use your Laravel named routes in JavaScript.
License MIT
Homepage https://github.com/ysocode/plum
Informations about the package plum
Plum – Use your Laravel routes in JavaScript
Introduction
Plum provides a JavaScript route()
function that works like Laravel's, making it a breeze to use
your named Laravel routes in JavaScript.
Inspiration
Plum is inspired by and derived from Ziggy, created by Jacob Baker-Kretzmar. For more information, check out the Ziggy repository.
Official Documentation
Install Plum using Composer:
Defining routes
To define routes, you can follow the Laravel documentation. Here’s an example of how to define a resource route for "contacts":
Using the route()
method provided by Plum
The route function generates a URL for a given named route:
Using route parameters
For example, you may need to capture a user's ID from the URL. You may do so by defining route parameters:
The route function generates a URL for a given named route with the given parameters:
Plum generates the final result using the JavaScript URL object, so if a route parameter does not
have a default value and is not provided through the route()
method,
you may end up getting an unexpected result, such as https://plum.test/users/%7Buser%7D
.
Using route multiple parameters
You may want to capture multiple route parameters, in this case, we capture both the user ID and the profile type:
The route function can be used to generate the URL for this route with the necessary parameters:
Using query parameters
You may want to use query parameters:
You can pass query parameters by using the _query
attribute:
It’s important to note that if you pass normal parameters that don’t match any defined route parameters, those parameters will automatically become query parameters.
In this case, you can omit the _query attribute because the search.index route doesn’t require any route parameters. Any parameters passed will automatically be treated as query parameters:
Like Laravel, Plum automatically encodes boolean query parameters as integers in the query string:
Using default parameter values
Plum supports default route parameter values. To better understand how default parameter values work, you can take a look at the Laravel documentation.
Now that you know how to define default parameter values, you can use the route()
function to generate
URLs without worrying about parameters that have default values.
Some other useful methods
Calling the route()
method without arguments allows you to use other methods provided by the Router class.
Has method
You can check if a route exists before using it:
Using route model binding
Plum supports route model binding. To better understand how route model binding work, you can take a look at the Laravel documentation.
You can use explicit model binding:
Alternatively, you can make model binding always use a database column other than id, by defining the route key name:
Now that you know how to use route model binding, you can use the route()
function to generate URLs by
passing the entire object. Plum will automatically resolve the URL using the model's slug as the route
model binding key:
Importing Plum in your Vue app
Plum includes a Vue plugin to make it easy to use the route()
helper throughout your Vue app:
Now you can use the route()
function anywhere in your Vue components and templates:
With