All Projects → creitive → laravel5-breadcrumbs

creitive / laravel5-breadcrumbs

Licence: MIT license
Laravel 5 integration for our breadcrumbs package

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to laravel5-breadcrumbs

Loaf
Manages and displays breadcrumb trails in Rails app - lean & mean.
Stars: ✭ 360 (+958.82%)
Mutual labels:  breadcrumbs
Magento 2 Seo
Magento 2 SEO extension will do perfectly for your better SEO. This is a bundle of outstanding features that are auto-active when you install it from Mageplaza without any code modifications. It is also friendly with your store if you need to insert meta keywords and meta descriptions for your product.
Stars: ✭ 99 (+191.18%)
Mutual labels:  breadcrumbs
Structured Data Json Ld
Collection of structured data snippets in Google preferred JSON-LD format.
Stars: ✭ 157 (+361.76%)
Mutual labels:  breadcrumbs
Wp Structuring Markup
🔌 WordPress: Plug-in Markup (JSON-LD) structured in schema.org
Stars: ✭ 26 (-23.53%)
Mutual labels:  breadcrumbs
Wordpress Seo
Yoast SEO for WordPress
Stars: ✭ 1,301 (+3726.47%)
Mutual labels:  breadcrumbs
Smartbreadcrumbs
A utility library for ASP.NET Core (both MVC and Razor Pages) websites to easily add and customize breadcrumbs.
Stars: ✭ 113 (+232.35%)
Mutual labels:  breadcrumbs
React Router Breadcrumbs Hoc
tiny, flexible, HOC for rendering route breadcrumbs with react-router v4 & 5
Stars: ✭ 276 (+711.76%)
Mutual labels:  breadcrumbs
Krumbsview
🍞 The ultimate breadcrumbs view for Android!
Stars: ✭ 170 (+400%)
Mutual labels:  breadcrumbs
Bootstrap Breadcrumbs
Django template tags for easy breadcrumbs using twitter bootstrap css classes or custom template
Stars: ✭ 91 (+167.65%)
Mutual labels:  breadcrumbs
Vue Breadcrumbs
Breadcrumbs for Vue.js
Stars: ✭ 148 (+335.29%)
Mutual labels:  breadcrumbs
Grav Plugin Breadcrumbs
Grav Breadcrumbs Plugin
Stars: ✭ 15 (-55.88%)
Mutual labels:  breadcrumbs
Vue 2 Breadcrumbs
Vue breadcrumbs
Stars: ✭ 76 (+123.53%)
Mutual labels:  breadcrumbs
React Breadcrumbs Dynamic
🏡 > breadcrumbs > extremely flexible > and > easy to use
Stars: ✭ 116 (+241.18%)
Mutual labels:  breadcrumbs
React Tunnels
🚇 Render React components in placeholders that are placed somewhere else in the component tree.
Stars: ✭ 398 (+1070.59%)
Mutual labels:  breadcrumbs
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (+391.18%)
Mutual labels:  breadcrumbs
Django Sitetree
Reusable application for Django introducing site tree, menu and breadcrumbs navigation elements.
Stars: ✭ 330 (+870.59%)
Mutual labels:  breadcrumbs
Xng Breadcrumb
A lightweight, configurable and reactive breadcrumbs for Angular 2+
Stars: ✭ 106 (+211.76%)
Mutual labels:  breadcrumbs
Honeybits
A PoC tool designed to enhance the effectiveness of your traps by spreading breadcrumbs & honeytokens across your systems to lure the attacker toward your honeypots
Stars: ✭ 222 (+552.94%)
Mutual labels:  breadcrumbs
Breadcrumbs
Laravel Breadcrumbs - An easy way to add breadcrumbs to your @Laravel app.
Stars: ✭ 169 (+397.06%)
Mutual labels:  breadcrumbs
Raygun4js
JavaScript provider for Raygun
Stars: ✭ 124 (+264.71%)
Mutual labels:  breadcrumbs

Latest Stable Version Total Downloads

Laravel 5 Breadcrumbs

A simple Laravel 5-compatible breadcrumbs package. Generates Twitter Bootstrap-compatible output.

Installation

Just run this on the command line:

composer require creitive/laravel5-breadcrumbs

Laravel 5.5+ will use the auto-discovery function.

If using Laravel 5.4 (or if you don't use auto-discovery) you will need to include the service providers / facade in config/app.php.

return array(
	// ...

	'providers' => array(
		// ...

		Creitive\Breadcrumbs\BreadcrumbsServiceProvider::class,
	),

	// ...

	'aliases' => array(
		// ...

		'Breadcrumbs' => Creitive\Breadcrumbs\Facades\Breadcrumbs::class,
	),
);

You're all set!

Usage

For usage documentation, please visit the core library that this package depends on: creitive/breadcrumbs.

This particular package registers a shared instance of the breadcrumbs class, and enables you to make the calls on the provided facade, ie. instead of doing $breadcrumbs->addCrumb('Home', '/'), you can do \Breadcrumbs::addCrumb('Home', '/').

Additionally, having this as a separate package enables us to move forward with Laravel-specific features, such as having a configuration file that enables you to more cleanly customize how the package works.

Laravel 4

For Laravel 4 support, visit the creitive/laravel4-breadcrumbs package.

Laravel 6

For Laravel 6 support, visit the creitive/laravel6-breadcrumbs package.

Laravel 7+

For Laravel 7+ support, visit the creitive/laravel-breadcrumbs package.

License

The code is licensed under the MIT license, which is available in the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].