© 2026 Hedgehog Software, LLC
Repeater::make('items') ->relationship() ->schema([ Repeater::make('details')->relationship(), ]),
// Booking.php public function items(): HasMany { return $this->hasMany(BookingItem::class); } // BookingItem.php public function details(): HasMany { return $this->hasMany(BookingItemDetail::class); }