eloquent-versioning
eloquent-versioning copied to clipboard
Find many solution.
Hi all, I am trying to optimize the queries I'm using in my app and I would like to access only once to retrieve all versioned models. Now, I'm doing a loop through the models and accessing each one individually with Model::version(1)->find(1)
.
I'd like to do something like Model::version([1, 1, 1])->find([1, 2, 3])
Does this feature exist?
Thanks in advance.