-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make filter docs use fluent syntax by default #492
Conversation
6.x/crud-filters.md
Outdated
CRUD::filter('active') | ||
->type('simple') | ||
->whenActive(function ($value) { | ||
$this->crud->addClause('where', 'active', '1'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Search $this->crud->addClause
& Replace with CRUD::addClause
in whole document
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Search
$this->crud->addClause
& Replace withCRUD::addClause
in whole document
@tabacitu It's still there 21 occurrences. NOT RESOLVED
Co-authored-by: Pedro Martins <pxpm88@gmail.com>
I've spent quite a bit of time rewriting this page, so that:
I need help TESTING the docs here. I need someone to use the code I provided in an app, and make sure it's working they're all working expected.
@karandatwani92 can you help with that please?
--
Addresses a small part of #450