Thomas Nadin
Thomas Nadin
Image fields only used the default connection when loading rather than using parent Post's connection. I noticed that for all fields there is a `postMeta` that is set to use...
Love the package, used it for ages, thanks a million for making it! Is it possible to include the component without it's DOM element? Currently I remove the DOM element...
Each variable is only matched once per function to its original scope:  As you can above, nested scoped seems to reset it. This...
This PR adds `findByIds` to the `EntryRepository` contract and Stache implementation. [See docs PR](https://github.com/statamic/docs/pull/1657). ```php $items = \Statamic\Facades\Entry::findByIds([ 3, 1, 0, 2 ]); $this->assertInstanceOf(\Statamic\Entries\EntryCollection::class, $items); $this->assertCount(3, $items); $this->assertEveryItemIsInstanceOf(\Statamic\Contacts\Entries\Entry::class); $this->assertEquals([ 3,...