In my ruby Volt project, I am getting the following error:
AttributeBinding Error: #<NoMethodError: 'undefined method `name' for nil'>
I know that it is coming from trying to access the name attribute on the model while it is nil. My routes file is the following:
client '/practices/new', component: 'admin', controller: 'offices', action: 'new'
The method 'new' assigns the model to a buffer but it is not being called on the page load. Anyone know why?