Romain 'Maz' BILLOIR
Romain 'Maz' BILLOIR
This PR will adds an easier way to save related models, without having to pay attention to fill the id of the related model. It will take some time to...
Now that `SELECT EXISTS` may be about to get merged, the `EXISTS` as condition method should be supported too. The `WHERE EXISTS` clause is really useful on relationship constraints: As...
This would add the SELECT EXISTS statement with this api: ```rust Query::select() .exists() .from(Char::Table) .and_where(Expr::col(Char::Character).eq("A")) ``` I had a doubt about the api to use, my second shot would have...
First draft to fix #216 , the next step would be to handle the wildcard to constraint a `SELECT *` without any further columns.
This PR add [QuillJS](https://quilljs.com/) Component. Requested here: #15 **QuillJS is slightly different from other editors since it stores the content into a JSON object. You should be aware of some...
Hi, As a advanced feature for avatar component, I would like to purpose an avatars "stack" component:  _Credits to [TailwindUI](https://tailwindui.com/components/application-ui/elements/avatars)_ ____ It should work like so (example for a...
Hi everyone, I just had a headache with Tailwind when I want to vertical-align a span into a div (I'm new with Tailwind but already love it). I read the...
I tried to run some databases tests using the `PluginTestCase` but for some reason I'm trying to figure out, the `Database.Tester` is not found on my system (but that's another...
When dealing with aliased-only css assets like so: ```twig ``` Because aliased assets are inserted in both `$combineJs` and `$combineJs`, the `if (count($combineCss) > count($combineJs))` condition results to false. This...
This allows the user to accept new options to be set on the dropdown field:  It's natively handled by Select2 as you can see [into the documentation](https://select2.org/tagging). To active...