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
Hi! Thx for Fenom adapter for Laravel, but I cannot use it.
My application is built from multiple packages and each package has their own views. While using blade I was used to just reference view from concrete package by writing `view('my_package::some.template') but your adapter seems to not support that case.
I got: Provider for 'my_package' not found
public function getProvider($scm = false)
{
if ($scm) {
if (isset($this->_providers[$scm])) {
return $this->_providers[$scm];
} else {
throw new InvalidArgumentException("Provider for '$scm' not found");
}
} e
Hi! Thx for Fenom adapter for Laravel, but I cannot use it.
My application is built from multiple packages and each package has their own views. While using blade I was used to just reference view from concrete package by writing `view('my_package::some.template') but your adapter seems to not support that case.
I got: Provider for 'my_package' not found
Is it a chance to improve it?
Going futher config parameter:
seems to be not legit, because we can have multiple directories with views...
For more info see: http://laravel.com/docs/5.1/packages#views
Maybe it will be more nice if FenomViewServiceProvider will register Fenom template engine alongside Blade using:
http://laravel.com/api/5.1/Illuminate/View/Factory.html#method_addExtension
The text was updated successfully, but these errors were encountered: