- Add ‘parser’ to the ‘packages’ array in config.php
- Name your views ‘foo.mustache’ not ‘foo.php’
- Call your views with View::forge(‘bar/foo.mustache’) not View::forge(‘bar/foo’)
- Still call your ViewModels with ViewModel::forge(‘bar/foo’) but add a public $_view = ‘bar/foo.mustache’ variable to your ViewModel
Thank you veru much this has helped me solve my problem