@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/consumables/general.checkout') }} @parent @stop {{-- Page content --}} @section('content') @if ($consumable->name) {{ $consumable->name }} @endif @if ($consumable->company) {!! $consumable->company->present()->formattedNameLink !!} @endif @if ($consumable->category) {!! $consumable->category->present()->formattedNameLink !!} @endif {{ $consumable->qty }} {{ $consumable->numRemaining() }} @if ($consumable->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1' || $consumable->getEula() || ($snipeSettings->webhook_endpoint != ''))
@if ($consumable->category->require_acceptance == '1') {{ trans('admin/categories/general.required_acceptance') }}
@endif @if ((string) $snipeSettings->require_accept_signature === '1') {{ trans('admin/categories/general.required_signature') }}
@endif @if ($consumable->getEula()) {{ trans('admin/categories/general.required_eula') }}
@endif @if ($consumable->category && $consumable->category->checkin_email) {{ trans('admin/categories/general.checkin_email_notification') }}
@endif @if ($snipeSettings->webhook_endpoint != '') {{ trans('general.webhook_msg_note') }} @endif
@if ($consumable->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1')

{{ trans('general.sign_in_place_help') }}

@endif
@endif
@stop