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.

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 plum

Plum – Use your Laravel routes in JavaScript

Latest Version on Packagist Downloads on Packagist

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