@php $uploaded = $submission ? $submission->files->count() : 0; $stepLimit = 0; if ($submission) { if ($submission->tier == 1) { if ($submission->current_step == 1) { $stepLimit = 3; } elseif ($submission->current_step == 2) { $stepLimit = 6; } } elseif ($submission->tier == 2) { if ($submission->current_step == 1) { $stepLimit = 5; // contoh tier 2 step 1 } elseif ($submission->current_step == 2) { $stepLimit = 10; } } elseif ($submission->tier == 3) { if ($submission->current_step == 1) { $stepLimit = 7; // contoh tier 2 step 1 } elseif ($submission->current_step == 2) { $stepLimit = 14; } } } $canUpload = $submission->status == 0 && // ⬅️ BELUM APPROVED $stepLimit > 0 && $uploaded < $stepLimit; @endphp @php $tierStyle = match($submission->tier) { 1 => 'bg-gray-200 text-gray-700', // Silver 2 => 'bg-yellow-200 text-yellow-800', // Gold 3 => 'bg-slate-300 text-slate-800', // Platinum default => 'bg-gray-100 text-gray-600' }; @endphp
* Pastikan screenshot jelas & sesuai ketentuan
@else @if($submission->status == 1)