@section('style') @parent @endsection @php $promocode_value = $voucher['redeem_code'] ?? $voucher['voucher_series']['promotion_mechanic_value']; // Check if voucher series uses barcode $uses_barcode = false; if($voucher['voucher_series']['series_id'] == env('VOUCHER_SERIES_USES_BARCODE', '')) { $uses_barcode = true; } // $promocode_value if ($uses_barcode) { // Display barcode using image URL $barcode_url = 'https://barcode.tec-it.com/barcode.ashx?data=' . urlencode($promocode_value) . '&code=Code128&translate-esc=on&dpi=128'; $promocode_html = '
Barcode
'; } elseif (str_contains($promocode_value, 'https://')) { // Display as clickable link $promocode_html = '
Visit Link
'; } else { // Display regular input field $promocode_html = '
'; } @endphp @section('script') @parent @include('components.enterprise_voucher.script-lang')