orchidsoftware / crud

Simplify the process of building CRUD (Create, Read, Update, Delete) functionality in Laravel using the features of Orchid.
https://orchid.software
MIT License
137 stars 34 forks source link

allow overriding index and show requests #58

Closed glebtv closed 2 years ago

glebtv commented 2 years ago

For example, I need to show soft deleted records in index views.

tabuna commented 2 years ago

Hey @glebtv. You can modify and add your conditions through filters. Even those that should be default without graphical display. I recommend that you familiarize yourself with them. At the same time, I am not against adding such an opportunity to the resource. The current name can be confusing. Please, let's use the following:

- ModelQuery
+ modelQuery

And change

- IndexQuery
+ paginationQuery
glebtv commented 2 years ago

Updated. Thank you.