@section( 'title', 'User Inventory')
Inventory Details
@foreach($inventory->items as $item)

{{ $item->name }}

{{$item->customer_notes}}
@if($item->year)
Year: {{ $item->year}}
@endif @if($item->asking_price)
Asking Price: R{{ number_format($item->asking_price, 2) }}
@endif @if($item->shaft_material)
Shaft: {{ $item->shaft_material }}
@endif @if($item->club_type)
Type: {{ $item->club_type }}
@endif @if($item->shaft_flex)
Flex: {{ $item->shaft_flex }}
@endif @if($item->handed)
Handed: {{ $item->handed }}
@endif @if($item->loft)
Loft: {{ $item->loft }}
@endif
@if($item->images->count())
@foreach($item->images as $image)
@endforeach
@else
No images uploaded
@endif
@endforeach