Merge pull request 'Added logic for validation in generate temp' (#40) from ranjith-dev into master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

Reviewed-on: #40
This commit was merged in pull request #40.
This commit is contained in:
2025-12-22 12:26:51 +00:00

View File

@@ -20,16 +20,47 @@ $sticker_id = $attributes->get('sticker_id');
@props(['sticker_id'])
@php
// $var = $sticker_id ?? 'undefined';
// \Log::info('Blade Debug: sticker_id type = ' . gettype($var));
// \Log::info('Blade Debug: sticker_id value = ', ['value' => $var]);
{{-- @php
$var = $sticker_id ?? 'undefined';
\Log::info('Blade Debug: sticker_id type = ' . gettype($var));
\Log::info('Blade Debug: sticker_id value = ', ['value' => $var]);
$isValid = $sticker_id && $sticker_id != 'empty';
$url = $isValid ? route('stickers.pdf', ['stickerId' => $sticker_id]) : '#';
@endphp --}}
@php
use App\Models\StickerStructureDetail;
$isValid = false;
if (!empty($sticker_id) && $sticker_id != 'empty') {
$isValid = StickerStructureDetail::where('sticker_id', $sticker_id)->exists();
}
$url = $isValid
? route('stickers.pdf', ['stickerId' => $sticker_id])
: '#';
@endphp
<div class="flex flex-col items-start space-y-2">
<a
href="{{ $url }}"
@if(!$isValid)
onclick="alert('Sticker ID not found in sticker structure details'); return false;"
@endif
target="_blank"
class="px-2 py-1 border
{{ $isValid
? 'border-success-500 text-success-600 hover:bg-success-50 hover:border-success-700'
: 'border-gray-300 text-gray-400 cursor-not-allowed' }}
rounded transition text-sm"
>
Generate Template
</a>
</div>
{{-- <div class="flex flex-col items-start space-y-2">
<a
href="{{ $url }}"
@if(!$isValid)
@@ -44,7 +75,7 @@ $sticker_id = $attributes->get('sticker_id');
>
Generate Template
</a>
</div>
</div> --}}