Commit 8257dec7 authored by Mahmoud Aglan's avatar Mahmoud Aglan

Add navigation links to collect-payment and enroll-existing wizard success screens

Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent 7f52ca38
......@@ -454,6 +454,28 @@ class="inline-flex items-center gap-2 px-6 py-3 min-h-16 bg-amber-600 text-white
{{ __('تحصيل آخر') }}
</a>
</div>
{{-- Navigation Links --}}
<div class="flex items-center justify-center gap-3 mt-4">
@if($participant_uuid)
<a href="{{ route('participants.show', $participant_uuid) }}" wire:navigate
class="inline-flex items-center gap-2 px-4 py-2.5 min-h-[44px] border border-blue-300 rounded-lg text-sm font-medium text-blue-700 hover:bg-blue-50 active:bg-blue-100 transition-colors">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
</svg>
{{ __('عرض المشترك') }}
</a>
@endif
@if($invoice_uuid)
<a href="{{ route('invoices.show', $invoice_uuid) }}" wire:navigate
class="inline-flex items-center gap-2 px-4 py-2.5 min-h-[44px] border border-gray-300 rounded-lg text-sm font-medium text-gray-700 hover:bg-gray-50 active:bg-gray-100 transition-colors">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
{{ __('عرض الفاتورة') }}
</a>
@endif
</div>
</div>
@endif
</div>
......
......@@ -374,6 +374,28 @@ class="inline-flex items-center gap-2 px-6 py-3 min-h-16 bg-emerald-600 text-whi
{{ __('تسجيل آخر') }}
</a>
</div>
{{-- Navigation Links --}}
<div class="flex items-center justify-center gap-3 mt-4">
@if($created_participant_uuid)
<a href="{{ route('participants.show', $created_participant_uuid) }}" wire:navigate
class="inline-flex items-center gap-2 px-4 py-2.5 min-h-[44px] border border-blue-300 rounded-lg text-sm font-medium text-blue-700 hover:bg-blue-50 active:bg-blue-100 transition-colors">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
</svg>
{{ __('عرض المشترك') }}
</a>
@endif
@if($created_invoice_uuid)
<a href="{{ route('invoices.show', $created_invoice_uuid) }}" wire:navigate
class="inline-flex items-center gap-2 px-4 py-2.5 min-h-[44px] border border-gray-300 rounded-lg text-sm font-medium text-gray-700 hover:bg-gray-50 active:bg-gray-100 transition-colors">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
{{ __('عرض الفاتورة') }}
</a>
@endif
</div>
</div>
@endif
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment