In a case where you want to update `VehicleTracker` table such that you find a record with `VehicleTracker.find(params[:id])`, how will you go about it?
The reason am asking is that you have suppressed `:id` from being created on `VehicleTrackers` table, In a case where you have vehicle_id column relation on `VehicleTracker` which is the same `id` for any record created by `Vehicle` on `VehicleTracker table`, how do you have a unique `params[:id]` to filter and update a table?
So I tried to use episode #149 i.e. https://www.driftingruby.com/episodes/rails-presenters with this very lovely solution but it flagged SQL errors as it is expected when I added Will Paginate and Kaminari Gem
So my question is:
How do you use Kaminari or WillPagnate Gem with this?
I have a lot of questions but I will start with some bothering me:
When you scaffold a new Solidus App, it creates a Monolith eCommerce right from an Highly Modular App. What do you think about making this a Modular Architecture instead of the Monolith it created for you?