@php $ws = current_workspace(); @endphp

QR Codes

{{ $qrCodes->total() }} total

@if($ws) @endif
@if($search ?? false)
@endif
@forelse($qrCodes as $qr)
{{-- QR type icon --}}
@php $displayType = $qr->payload['display_type'] ?? $qr->type; $typeColors = ['url' => 'text-blue', 'vcard' => 'text-green', 'wifi' => 'text-amber', 'email' => 'text-purple', 'default' => 'text-t3']; $typeColor = $typeColors[$displayType] ?? $typeColors['default']; @endphp
{{ $qr->payload['label'] ?? ($qr->label ?? $qr->ulid) }}
{{ $qr->payload['data'] ?? ($qr->payload['url'] ?? '') }}
{{ strtoupper($qr->payload['display_type'] ?? $qr->type) }} {{ $qr->is_dynamic ? 'Dynamic' : 'Static' }}
@empty

No QR codes yet

Create QR codes for URLs, vCards, WiFi and more.

@if($ws) @endif
@endforelse
@if($qrCodes->hasPages())
{{ $qrCodes->links() }}
@endif