Jason Varga

Results 518 comments of Jason Varga

You can add fields to forms. Sorry, should have updated this issue when we shipped the feature! See https://github.com/statamic/cms/pull/8491 Add the following to your AppServiceProvider's boot method: ```php \Statamic\Facades\Form::appendConfigFields('my_form', 'Messages',...

Ideally we should avoid that. If you don't have `mininum-stability`, you're still able to do `composer require my/addon dev-master` and it'll work. It's just a matter of figuring out what...

Thanks for the PR and sorry for the delay. Your addon could [publish](https://statamic.dev/extending/addons#publishables) a blueprint yaml file to `resources/vendor/collections/{collection}/{blueprint}.yaml`.

You can do this already in your own apps for now in `bootstrap/app.php` (for Laravel 11) ```diff return Application::configure(basePath: dirname(__DIR__)) ->withExceptions(function (Exceptions $exceptions) { + $exceptions->render(function (\Symfony\Component\HttpKernel\Exception\HttpException $e) { +...

When you visit one of your cached form pages, do you see an AJAX request to `/!/nocache` being done automatically?

We should be able to pass along to the `UrlInvalidated` event whether it was a 404 or not. Then you can avoid refetching those URLs.

They intentionally get cached since #10294. If your 404 page is heavy - it might be because of a nav or who knows what else - you could easily make...