@if (!$stock)
Invalid item selected.
@else
{{ $stock->item->name }}
Stock: {{ $stock->stock }}
Description
{!! $stock->item->parsed_description !!} {!! $stock->item->parsed_description ? '
' : '' !!}

This item was generously donated by {!! $stock->stack->user->displayName !!}!

@if (isset($stock->stack->data['data']))
Source: {!! $stock->stack->data['data'] !!}
@endif @if (isset($stock->stack->data['notes']))
Notes: {!! $stock->stack->data['notes'] !!}
@endif
@if (Auth::check()) @if ($stock->stock == 0)
This item is out of stock.
@else

You may collect one (1) item from this shop every {{ Config::get('lorekeeper.settings.donation_shop.cooldown') }} minutes.

{!! Form::open(['url' => 'shops/collect']) !!} {!! Form::hidden('stock_id', $stock->id) !!}
{!! Form::submit('Collect', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @endif @else
You must be logged in to collect this item.
@endif @endif