for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Humweb\Breadcrumbs;
class Bootstrap4Presenter extends Presenter
{
public function getLink($item)
return '<li class="breadcrumb-item"><a href="'.$item['url'].'">'.$item['label'].'</a></li>';
}
public function getActiveLink($item)
return '<li class="breadcrumb-item active">'.$item['label'].'</li>';