Repositories icon indicating copy to clipboard operation
Repositories copied to clipboard

Laravel ~5.1 Repositories Library.

Results 3 Repositories issues
Sort by recently updated
recently updated
newest added

I'm using this package for my project. I want to find an user where id=1 or username='username' but I can not do this. How can I do this?

enhancement

SELECT * FROM Customers WHERE id='1' AND username='username'; You can try this querry or instead AND you cand put OR SELECT * FROM Customers WHERE id='1' OR username='username';

Hello, I have set the trait ShouldCache for a model on my frontend, but I need to set it off for the backend. It would be great to be able...

enhancement