Order Task Details View (resources/views/admin/order/show/task-detail.blade.php):
Business Summary: Resolved an issue where the "Create Pickup Task" button would incorrectly disappear if a child order existed but was in a "cancel" state. The button now correctly appears when applicable child orders are cancelled, ensuring operational workflow is not hindered.
Technical Summary: Modified the visibility condition for the "Create Pickup Task" button. Added 'unpaid' to the array of statuses being checked in the whereIn clause (['paid', 'partial', 'unpaid']). Also removed the redundant @if (!$order->children) wrapper, allowing the button to render correctly based on the refined child status condition rather than strictly requiring no children.