Hi all,
When using Fuel\Code\View::forge(), it's easy to pass data from the controller to the view.
View::forge('chose/view', $data);
But when using ViewModel, it is not possible. (it seems.)
View::forge('chose/view', $method);
I have a bunch of ViewModel::forge calls from within my Controller, and I would like to use the same data form in all of them.
How can I do like the View class?