@extends('app') @section('title', 'Personal Items') @section('content') @if(!$items->count())
@lang('DSpecial::common.no_items')
@else
@lang('DSpecial::common.market')
@foreach($items as $item)
{{ $item->name }}
@if(filled($item->image_url)) {{ $item->name }} @endif {!! $item->description !!}
@if(filled($item->notes) && Auth::id() == $owner)
{!! $item->notes !!}
@endif
@endforeach
@endif {{ $items->links('pagination.default') }} @endsection