{{ $asset->name }}

{{ $asset->name }}

By {{ $asset->creator->username }}

@if ($asset->ownership() || $asset->canConfigure()) @endif
@if (!$asset->is_for_sale)
@if ($asset->ownership())

{{ __('You already own this item.') }}

@else

{{ __('This item is not currently for sale.') }}

@endif
@else @if ($asset->ownership())

{{ __('You already own this item.') }}

@endif
{{ _('Price') }}
@if ($asset->price > 0)

{{ number_format($asset->price) }}

@else

{{ __('Free') }}

@endif @if (!$asset->ownership()) @endif
@endif
{{ __('Type') }}
{{ __($asset->type->fullname()) }}
{{ __('Genre') }}
{{ __($asset->genre->fullname()) }}
{{ __('Created') }}
{{ date('M d, Y g:i:s A', strtotime($asset->created_at)) }}
{{ __('Updated') }}
{{ date('M d, Y g:i:s A', strtotime($asset->updated_at)) }}
{{ __('Description') }}
"{{ $asset->description }}"