{{ trans('admin/users/table.name') }}
{{ $consumable->name }}
@if ($consumable->company)
{{ trans('general.company') }}
{{ $consumable->company->name }}
@endif
@if ($consumable->category)
{{ trans('general.category') }}
{{ $consumable->category->name }}
@endif
@if ($consumable->numRemaining())
{{ trans('general.remaining') }}
@if ($consumable->numRemaining() < (int) $consumable->min_amt)
@endif
{{ $consumable->numRemaining() }}
@endif
@if ($consumable->min_amt)
{{ trans('general.min_amt') }}
{{ $consumable->min_amt }}
@endif
@if ($consumable->location)
{{ trans('general.location') }}
{{ $consumable->location->name }}
@endif
@if ($consumable->supplier)
{{ trans('general.supplier') }}
{{ $consumable->supplier->name }}
@endif
@if ($consumable->manufacturer)
{{ trans('general.manufacturer') }}
{{ $consumable->manufacturer->name }}
@endif
@if ($consumable->purchase_cost)
{{ trans('general.purchase_cost') }}
{{ $snipeSettings->default_currency }}
{{ Helper::formatCurrencyOutput($consumable->purchase_cost) }}
@endif
@if ($consumable->order_number)
{{ trans('general.order_number') }}
{{ $consumable->order_number }}
{{ trans('general.copy_to_clipboard') }}
@endif
@if ($consumable->item_no)
{{ trans('admin/consumables/general.item_no') }}
{{ $consumable->item_no }}
{{ trans('general.copy_to_clipboard') }}
@endif
@if ($consumable->model_number)
{{ trans('general.model_no') }}
{{ $consumable->model_number }}
{{ trans('general.copy_to_clipboard') }}
@endif
@if ($consumable->purchase_date)
{{ trans('general.purchase_date') }}
{{ \App\Helpers\Helper::getFormattedDateObject($consumable->purchase_date, 'datetime', false) }}
@endif
@if ($consumable->created_at)
{{ trans('general.created_at') }}
{{ \App\Helpers\Helper::getFormattedDateObject($consumable->created_at, 'datetime')['formatted']}}
@endif
@if ($consumable->updated_at)
{{ trans('general.updated_at') }}
{{ \App\Helpers\Helper::getFormattedDateObject($consumable->updated_at, 'datetime')['formatted']}}
@endif
@if ($consumable->admin)
{{ trans('general.created_by') }}
@endif
@if ($consumable->notes)
{{ trans('admin/users/table.notes') }}
{!! nl2br(Helper::parseEscapedMarkedownInline($consumable->notes)) !!}
@endif