Ryan Mitchell

Results 59 issues of Ryan Mitchell

It would be great to have an option to only allow the ui to tick from a fixed list of authorisations/privileges rathe than a free type field. it could be...

enhancement

Just noticed this will be needed as part of the Eloquent package models PR seeing as we inherit from this class ~~Edit: moved to draft status as we'll need to...

As mentioned here: https://github.com/statamic/cms/discussions/6446#discussioncomment-3327655 This PR adds facade support for Form submissions so you can programatically retrieve submissions, eg. ```php Statamic\Facades\FormSubmission::whereForm('my_handle'); Statamic\Facades\FormSubmission::whereInForm(['my_handle', 'my_other_handle']); Statamic\Facades\FormSubmission::query()->get(); ``` The larger detail is that...

This PR follows on from the [eloquent all models PR](https://github.com/statamic/eloquent-driver/pull/42) by allowing the user roles and groups to be stored in the database. I appreciate that not every install would...

This PR adds a trait for isDirty() / isClean() support on Entries through the use of a trait. I set it up this way to allow it to be extended...

This PR updates the state store paths for user groups to use `->` rather than `/` which resolves the errors in #6124 and follows up on the comments in #2498....

Feature request Is there any way to have a hierarchicalMenu that shows the lowest level children as a checkbox list rather than a link list, in the same way that...

Type: Question
Feedback

This PR adds `spatie/laravel-blink` as a dependency to the core project and uses it to store any defaults (eg currency, channels) for the lifecycle of the request. On our test...

### Discussed in https://github.com/getcandy/getcandy/discussions/234 Originally posted by **ryanmitchell** March 22, 2022 I have a custom tax driver (to interact with Avatax) and am trying to work out how to apply...

This means we don't assume relateableQuery() (or other) returns the query eg. ``` public static function relatableQuery(NovaRequest $request, $query) { $query->whereEnabled(); } ```