Maurits van der Schee
Maurits van der Schee
@f0rever-johnson I'm aiming for such support in v2. I have reflection, table renames and column changes implemented currently.
Hi Everaldlee, Thank you for asking this question. Creating tables is now possible, creating databases is not (yet) supported. I hope this helps you. Kind regards, Maurits
You need to enable the 'columns' controller, see also: https://github.com/mevdschee/php-crud-admin/blob/main/src/index.php
> I have a sample table I would like to duplicate This is not yet supported, although one could write this as middleware, executing certain queries when a new authenticated...
Related: https://github.com/mevdschee/php-crud-api/issues/827#issuecomment-1012048398
Hi Adrian, Thank you for your contribution! I really like your custom controller documentation and example. Do you want me to add the documentation to the README or do you...
Did you consider adding a custom OpenAPI builder with the 'customOpenApiBuilders' config parameter? It would make the example even more complete!
Thank you for your kind words. The primary keys cannot be excluded as they are mandatory for the join process that happens after the exclude is applied. It could be...
I like this idea, I can see how this would be very helpful! Thank you for reporting this.
You cannot sort on a related field as the implementation is streaming (and thus does not use joins). This means that the entities are streamed to the client one by...