© 2026 Hedgehog Software, LLC
class ExampleField extends Forms\Components\ViewField { use WithPagination; public static function make(string $name): static { $static = parent::make($name); $static->viewData([ 'example' => Models\Example::paginate(5) ]); return $static; } }