have you tried adding them to the autoload/classmap in composer.json?
For views, you can use the addNamespace function to define a new namespace and directory for your views. I think something like this would work:
View::addNamespace('your_component', 'app/components/your_component/views');
And then access it like so:
View::make('your_component::list');
As for the config, that's tougher. There may be a decent way to do this, but you'll have to look into Laravel's API documentation.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community