@props([ 'item', ]) {{-- Batch equivalent of the notification callout that every singleton checkout screen renders. Same four conditions: - the item requires acceptance (acceptance email fires) - global signature-required is on (each recipient signs) - the item has a EULA attached (EULA email fires) - a webhook endpoint is configured (each fulfilled checkout POSTs to it) Sign-in-place is intentionally not offered here - bulk fulfill hands out to N different requesters and there is no single-user surface to sign against. --}} @if ($item->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1' || $item->getEula() || $snipeSettings->webhook_endpoint != '')