shareit/resources/views/item/otherItems.blade.php
Bruno Fontes 63ef369e16 Added PTB Translation of emails and some pages
Now the main page, item page and e-mails are translated
into Brazilian Portuguese
2018-09-27 20:13:14 -03:00

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>