I am new to octobercms, I want to list all the existing namespaces and plugins and models in my project, how can I do it?
https://secure.php.net/manual/en/function.get-declared-classes.php
echo dump(get_declared_classes());
or
dd(get_declared_classes());