Skip to content

Instantly share code, notes, and snippets.

@CoolGoose
Created March 24, 2014 19:46
Show Gist options
  • Save CoolGoose/c50a10b2adf4676f2df1 to your computer and use it in GitHub Desktop.
Save CoolGoose/c50a10b2adf4676f2df1 to your computer and use it in GitHub Desktop.
Here you are
$bc = new \Noherczeg\Breadcrumb\Breadcrumb(\Config::get('app.url'));
$breadcrumb_elements = array_map(function($el) {
if (is_string($el)) {
return str_replace('_', ' ', $el);
}
return $el;
}, \Request::segments());
if ( ! empty($breadcrumb_elements))
{
$bc->from($breadcrumb_elements);
}
return $bc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment