inertiajs / pingcrm

A demo application to illustrate how Inertia.js works.
http://demo.inertiajs.com
MIT License
2.14k stars 779 forks source link

Search is case sensitive #195

Closed devnll closed 6 months ago

devnll commented 1 year ago

Not sure if this is intentional but figured I'd report it just in case, as it feels somewhat counterintuitive.

As an example, there are several contacts with "Bar" in their names (Ceasar Barrows, Margot Bartoletti), and when I type "Bar" they are found, however entering "bar" yields an empty list. This caught me off guard when I first tried the demo, but maybe it's a feature and not a bug? ;)

(loooove Inertia btw, thanks so much for all your work on it!)

ntaylor-86 commented 1 year ago

@devnll are you using the default Sqlite database for this project?

DB_CONNECTION=sqlite

Sqlite IS case-sensitive.

devnll commented 1 year ago

Sorry, I should have specified. I was referring to the existing online demo referenced in the repo's About section: http://demo.inertiajs.com/

driesvints commented 6 months ago

We use postgresql which is case sensitive unfortunately. But this isn't a major concern for the purpose of this demo app really. It's really about showcasing how you can build an app with Inertia. Thanks for mentioning though!