@extends('layouts.app') @section('content')
{{ csrf_field() }}
@include ('layouts.errors')
Product: {{$product['name']}} @include ('product.buttons')
@if (session('status')) @endif Items:
    @forelse ($product->items as $item)
  • {{ $item->name }}
  • @empty

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

    @endforelse
@endsection