在laravel中的breadcrumb隐藏链接

I want to remove the links in breadcrumbs how do I do that? Currently using this package to do it, davejamesmiller/laravel-breadcrumbs.

Is it possible to remove the links?

For now I have something like this:
// Summary
Breadcrumbs::register('summary', function ($breadcrumbs) {
    $breadcrumbs->push('List of Applicant', route('summary'));
});


// Summary > User Information
Breadcrumbs::register('user.show', function ($breadcrumbs,$id) {
    $breadcrumbs->parent('summary', route('summary'));
    $breadcrumbs->push('User Information', route('user.show', $id));
});

So I want to remove the link part for Summary when I am in the page of User Information, how do I do that? Example just plain text, Summary > User Information

For push() only mandatory param is title, so if you want to remove URL from a breadcrumb you can do like this:

$breadcrumbs->push('User Information');