Download the PHP package martinbean/laravel-menu-builder without Composer

On this page you can find all versions of the php package martinbean/laravel-menu-builder. 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 laravel-menu-builder

Laravel menu builder package

A simple menu builder package for Laravel 5.x

Installation

Composer

This package can be installed via Composer. Run the following from the command line:

$ composer require martinbean/laravel-menu-builder

Usage

The menu builder consists of two models: Menu and MenuItem. A Menu has many MenuItem instances, and a MenuItem morphs itself to the models in your application. Therefore, you need to do some linking up to get the menu builder working.

Say you have a Page model. You will need to implement the Navigatable interface like so:

Adding the interface means you then need to implement two methods on your model class. These methods are getTitle() and getUrl().

In your theoretical Page model, this can be implemented simply like this:

For getTitle() we’re simply returning the value of the model’s title attribute; and for getUrl() we return a route using Laravel’s route() helper.

The interface means you can make any of your existing models into a menu item, so long as they expose a title and a URL. This makes the menu builder flexible, and akin to the one in WordPress (which inspired this package) where menu items can be a post, page, category etc.

Rendering menus

Rendering of menus are done via presenter classes. This means you can change how menus are rendered by creating new presenters.

Out of the box, the package comes with a UnorderedListPresenter class. As the name suggests, this renders the menu in a plain ol’ HTML unordered list (<ul>) element.

You can create your own presenters: all you need to do is implement the Presenter contract, which will enforce you to implement three methods:

Your presenter should also have a constructor that takes an Menu instance as a parameter.

Take a look at the UnorderedListPresenter class source for an example of how to implement these methods.

Displaying menus in your templates

The Menu model is added to Laravel’s container and exposed via a facade, making it available in your templates. To render a menu, you can simply call:

{!! Menu::build(1) !!}

Where the first parameter is the ID (primary key value) of the menu you wish to render. There is also an optional second parameter which is the presenter class you wish to use if you don’t want to use the default UnorderedListPresenter class.

CRUD

You’ll also need to implement your own CRUD routines for building menus.

Issues

If you have any problems with this package, create a new Issue.

License

Licensed under the MIT License.


All versions of laravel-menu-builder with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ~5.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 martinbean/laravel-menu-builder contains the following files

Loading the files please wait ....