@extends('admin.layout') @section('title', 'Stamp QR Code') @php $initialMode = 'all'; $initialPagesInput = ''; if ($document->qr_pages !== 'all') { $decodedPages = json_decode($document->qr_pages, true); if (is_array($decodedPages) && count($decodedPages) > 0) { $normalizedPages = array_values(array_filter(array_map('intval', $decodedPages), fn ($page) => $page > 0)); if (count($normalizedPages) > 0) { $initialMode = count($normalizedPages) === 1 ? 'single' : 'multiple'; $initialPagesInput = implode(',', $normalizedPages); } } } @endphp @push('scripts') @endpush @section('content')
Live preview — QR overlaid at selected position. Page shows first page by default.
File: {{ $document->original_filename }}