I looked through the first 20+ pages of discussion and performed some searching but could not find an answer.
I'm doing soft deletes on my models. I'd like to not show those deleted records by default within the model so I don't have to filter each time I query. What is the proper approach for this? Where do I specify that I want: (deleted is null) or (deleted = 0) in my query each time so that it does not prohibit me from searching/filtering within the application?
Thanks