Commit aca4bef0 authored by Mahmoud Aglan's avatar Mahmoud Aglan

fix(waiver): fix 404 on financial account button in waiver create

The button linked to /members/{id}/financials which doesn't exist.
Changed to /members/{id} where the financial summary actually lives.
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent 3d67b965
......@@ -123,7 +123,7 @@
</form>
<?php else: ?>
<div style="padding:20px;text-align:center;">
<a href="/members/<?= (int) $member['id'] ?>/financials" class="btn btn-primary">عرض الحساب المالي</a>
<a href="/members/<?= (int) $member['id'] ?>" class="btn btn-primary">عرض الحساب المالي</a>
<a href="/members/<?= (int) $member['id'] ?>" class="btn btn-outline">رجوع</a>
</div>
<?php endif; ?>
......
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