cms icon indicating copy to clipboard operation
cms copied to clipboard

The core Laravel CMS Composer package

Results 688 cms issues
Sort by recently updated
recently updated
newest added

Following on from [my comments](https://github.com/statamic/cms/issues/5254#issuecomment-1105201775) in #5254, here is a PR containing the basics. Hopefully nothing too offensive in here. In my manual testing it hasn't introduced any regressions.

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...

### Bug description Field handles have no validation ensuring `snake_case`, which causes edge case JS errors when using field conditions (due to our omitter trying to access a JS key...

bug

There's quite a bit of wiring up to track the permission through all the various policies. - [x] Settings GUI - [x] Collections - [ ] Entries - [ ]...

Fixes https://github.com/statamic/cms/issues/3030 Fixes https://github.com/statamic/cms/issues/5034 - [x] introduce four main sections with z-indexes - [x] position mainsections sticky instead absolute/fixed - [x] prevent duplicate nav markup - [x] improve table overflowing...

## Bug Description Getting a "This URI has already been taken" message when saving an entry to a specific collection. Have tested a couple other collections and am able to...

### Bug description Unable to create a new entry when collection route is set to `/{id}` with the following errors: - "The given data was invalid" - "This URI has...

### Bug description After creating a multi-site, I added a taxonomy with a non-localizable asset (icon that stays the same for every language). Then I went ahead and added content...

multisite

An Issue came up on Discord: ```php class ServiceProvider extends AddonServiceProvider { protected $stylesheets = [ __DIR__.'/../resources/css/admin-styler-base.css' // Under the hood, Statamic::style() will be called. The name // `admin-styler` will...