You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the way I use basset is I define all my collections as routes in string inside my basset/config.php file in the form 'controller.method' then I have one dynamic basset loader that loads the collections based on the route.
so for example AccountsController@edit will load basset account.edit
This works fine now my question how do I handle by bundle css and js.
I don't want to create a collection inside app/config/packages/jasonlewis/basset/config.php because this looses the modularity of my package.
Currently the only thing I need to use this package is call in any view != charts::startLoad($data) which calls the startLoadfunction inside workbench/newton/charts/src/Newton/Charts/Charts.php and returns a view.
I'm looking for a way for the bassets to automatically get loaded from the startLoadfunction or somwhere where it could be programatic. How would I do this?
Currently the way I use basset is I define all my collections as routes in string inside my basset/config.php file in the form 'controller.method' then I have one dynamic basset loader that loads the collections based on the route.
so for example AccountsController@edit will load basset account.edit
app/config/packages/jasonlewis/basset/config.php
This works fine now my question how do I handle by bundle css and js.
I don't want to create a collection inside
app/config/packages/jasonlewis/basset/config.php
because this looses the modularity of my package.Currently the only thing I need to use this package is call in any view
!= charts::startLoad($data)
which calls the startLoadfunction insideworkbench/newton/charts/src/Newton/Charts/Charts.php
and returns a view.I'm looking for a way for the bassets to automatically get loaded from the startLoadfunction or somwhere where it could be programatic. How would I do this?
The text was updated successfully, but these errors were encountered: