Daantje
Daantje
I use https://github.com/fortrabbit/craft-object-storage for S3 compatible buckets that need a custom endpoint. Works out of the box.
I used this: **CategoryType.php** ```php
I have the same problem. I've tried to solve this with lifecycle hooks. It is a not faster. Am I missing something? I'm using one of these, or a combination:...
In filters/index.js you do ```js import Foo from './foo' export const foo = Foo ``` And in filters/foo.js you do: ```js export default (value) => { return 'foo' + value...
You mean this? https://open-admin.org/docs/en/model-form-callback ```php /** * Make a form builder. * * @return Form */ protected function form() { $form = new Form(new MyModel()); $form->text('title', __('admin.title'))->required(); $form->submitted(function (Form $form)...
Did you add a disk named `admin` in `config/filesystems.php` and pointed it to the S3 bucket? If you did, and there is still an issue, this is a bug. More...
I have the same issue. For now I fixed it by using a select with values from a folder in `storage`. Maybe this works for your project too. ```php ...,...
I have almost the same problem. I get an exception on submit: ``` ErrorException In EmbeddedForm.php line 162 : foreach() argument must be of type array|object, bool given ``` After...
To fix this with a workaround, change the `model()` method in `vendor/open-admin-org/open-admin/src/Form.php` to allow the interactor too. ```php /** * @return Model|\OpenAdmin\Admin\Actions\Interactor\Form */ public function model(): Model|\OpenAdmin\Admin\Actions\Interactor\Form { return $this->model;...
I had same problem, now I use https://quasar.dev/vue-components/splitter instead of tables.