@extends('layouts.app') @section('content')
Dashboard
@if (session('status')) @endif

Your itens

@forelse ($items as $item)
  • {{$item->name}} ({{$item->product->name}}) @if ($item->usedBy) @if ($item->usedBy == \Auth::id())
    {{ csrf_field() }}
    {{\Carbon\Carbon::parse($item->updated_at)->diffForHumans()}} @else @endif @else
    {{ csrf_field() }}
    @endif
  • @empty

    There are no items for you yet. Include a product or an item here.

    @endforelse
    @endsection