Ryan Mitchell
Ryan Mitchell
Someone was looking for NavTreeSaving and CollectionTreeSaving in discussions earlier: https://github.com/statamic/cms/discussions/10618 This PR adds them, as well as adding *Deleting events too. Closes statamic/ideas#1207.
This PR changes revisions to work from a stache store and adds a query builder to allow revisions to be queried using the supported methods. I've tried to implement this...
This PR fires a `creating-entry` hook on the 'create' screen of the CP, allowing you to programatically set default values for fields. You can see this has been asked for...
This PR adds support for using query scopes in the REST API. The URL format follows the same approach as filters: `https://mysite.com/api/collections/pages/entries?query_scope[my_scope]=value` or, if you have multiple values `https://mysite.com/api/collections/pages/entries?query_scope[my_scope][value_key]=value&query_scope[my_scope][another_value_key]=value2` I've...
This PR ensures Laravel model attributes can be rendered in antlers without having to add them to appends(). This allows you to do things like: ```php class MyModel extends \Illuminate\Database\Eloquent\Model...
Currently the shipping tables add-on only supports returning the default tax class/rate. However countries can have different requirements for how tax should be calculated on shipping depending on what is...
This PR adds the ability to extend base edit record pages. Our use case is the ability to add to the inventory pages, which is why I've applied this to...
If you use the database search driver (ie dont use scout) in the admin the product table is not searchable by SKU or by product name, which are the two...
We are extending ProductVariant in order to add some of our own logic to it. We have our lunar models using a separate database connection to the rest of the...
- Lunar version: 1.0.0-beta.1 - Laravel Version: 11.0.87 - PHP Version: 8.3.1 - Database Driver & Version: Mysql 8 ### Expected Behaviour: When using model extending attributes would still be...