Download the PHP package oak/breadcrumbs without Composer
On this page you can find all versions of the php package oak/breadcrumbs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download oak/breadcrumbs
More information about oak/breadcrumbs
Files in oak/breadcrumbs
Download oak/breadcrumbs
More information about oak/breadcrumbs
Files in oak/breadcrumbs
Vendor oak
Package breadcrumbs
Short Description This is a package that enables you to use breadcrumbs
License MIT
Homepage http://baronen.org
Package breadcrumbs
Short Description This is a package that enables you to use breadcrumbs
License MIT
Homepage http://baronen.org
Keywords breadcrumbslaravel
Please rate this library. Is it a good library?
Informations about the package breadcrumbs
Simple Breadcrumbs for Laravel 4
This is a package for Laravel 4.
Add to your laravel project
Install by adding to yur composer.json
"ekhaga/breadcrumbs": "dev-master"
'providers' => array(
...,
'Oak\Breadcrumbs\BreadcrumbsServiceProvider',
)
May skip this and just import/use it in the controller.
'aliases' => array(
...,
'Breadcrumbs' => 'Oak\Breadcrumbs\Facades\Breadcrumbs'
)
Add an item
Breadcrumbs::add('Home', '/');
Enable divider
Breadcrumbs::enableDivider();
Set divider character
Breadcrumbs::setDivider('→');
Set a css class to the list
Breadcrumbs::cssClass('yourclass')
Render the crumbs This will render the crumbs in a ul list if there is any crumbs
Breadcrumbs::render()
Get all crumbs This function will return all breadcrumbs in an array
Breadcrumbs::all()
All versions of breadcrumbs with dependencies
PHP Build Version
Package Version
The package oak/breadcrumbs contains the following files
Loading the files please wait ....