In a field we have access to $this
which is a kind of field object that contains for example $this->page()
.
How do I load the field object from another field on another page?
In need it to use this function in a list of pages:
$fields = $field->page()->blueprint()->fields($this)->toArray();
The list might look like this:
foreach( site()->children() as $page ) {
}