We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Good Day, Please excuse me if I am wrong, I am still a junior developer. I would like to make note of an issue that I have found and provide a fix.
Implementing what is provided, the outcome is having each <li> on a new line:
<li>
@if(Breadcrumbs::has()) @foreach (Breadcrumbs::current() as $crumbs) @if ($crumbs->url() && !$loop->last) <li class="breadcrumb-item"> <a href="{{ $crumbs->url() }}"> {{ $crumbs->title() }} </a> </li> @else <li class="breadcrumb-item active"> {{ $crumbs->title() }} </li> @endif @endforeach @endif
View of display:
In order to display the breadcrumbs inline I have to add the <ol> tag back from "tabuna/breadcrumbs": "^1.0" and this seems to be working:
<ol>
"tabuna/breadcrumbs": "^1.0"
@if(Breadcrumbs::has()) <ol class="breadcrumb border-0 m-0"> @foreach (Breadcrumbs::current() as $crumbs) @if ($crumbs->url() && !$loop->last) <li class="breadcrumb-item"> <a href="{{ $crumbs->url() }}"> {{ $crumbs->title() }} </a> </li> @else <li class="breadcrumb-item active"> {{ $crumbs->title() }} </li> @endif @endforeach </ol> @endif
View of working display:
Thank you.
The text was updated successfully, but these errors were encountered:
Just add display: flex; to .breadcrumb in css
Sorry, something went wrong.
No branches or pull requests
Good Day,
Please excuse me if I am wrong, I am still a junior developer. I would like to make note of an issue that I have found and provide a fix.
Implementing what is provided, the outcome is having each
<li>
on a new line:View of display:
In order to display the breadcrumbs inline I have to add the
<ol>
tag back from"tabuna/breadcrumbs": "^1.0"
and this seems to be working:View of working display:
Thank you.
The text was updated successfully, but these errors were encountered: