@extends('layouts.app') @section('content')
{{ csrf_field() }}
@include ('layouts.errors')
Item: {{$item[0]->name}} @include ('item.buttons')
@if (session('status')) @endif
    @forelse ($otherItems as $otherItem) @if (!$otherItem->usedBy)
  • {{ $otherItem->name }}
  • @endif @empty

    There are no items yet. Include one with the form above.

    @endforelse
@endsection