Whats the correct way to check if an asset collection exists before attempting to output?
If, I have a "footer" collection and attempt to output in my main layout without adding assets it throws an exception. If I use $this->assets->get('footer'), it will throw an exception if not created. This is what i do for now, but seems wrong:
$this->assets->collection('footer');
echo $this->assets->outputJs('footer');