From 96409f0c957d01fd5b1f3346e782411f80d7154e Mon Sep 17 00:00:00 2001 From: Obinna Elvis Okechukwu Date: Thu, 30 Jul 2026 19:41:07 -0500 Subject: [PATCH] feat(checkout): support partial-type checkout fields Adds a generic includes/checkout/field-partial.blade.php so extensions can point a checkout field at an arbitrary blade view via 'type' => 'partial', 'path' => '...', matching the existing FormField $path + 'partial' convention used elsewhere in admin forms. Co-Authored-By: Claude Sonnet 5 --- resources/views/includes/checkout/field-partial.blade.php | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 resources/views/includes/checkout/field-partial.blade.php diff --git a/resources/views/includes/checkout/field-partial.blade.php b/resources/views/includes/checkout/field-partial.blade.php new file mode 100644 index 0000000..d2a600f --- /dev/null +++ b/resources/views/includes/checkout/field-partial.blade.php @@ -0,0 +1,4 @@ +@include($field->path, [ + 'field' => $field, + 'orderModel' => $orderModel, +])