mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-11-04 03:31:02 -03:00 
			
		
		
		
	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> |