mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 12:17:10 +00:00
Bruno Fontes
63ef369e16
Now the main page, item page and e-mails are translated into Brazilian Portuguese
17 lines
445 B
PHP
17 lines
445 B
PHP
<div class="card mt-4">
|
|
<div class="card-header">
|
|
{{ __('item.otherItems') }}
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<ul>
|
|
@forelse ($otherItems as $otherItem)
|
|
@if (!$otherItem->used_by)
|
|
<li><a href="/item/{{ $otherItem->id }}">{{ $otherItem->name }}</a></li>
|
|
@endif
|
|
@empty
|
|
<p>{{ __('item.noItems') }}</p>
|
|
@endforelse
|
|
</ul>
|
|
</div>
|
|
</div> |