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
the view-path that you register in the \DesignMyNight\Laravel\Logging\MailableLogServiceProvider::register method is unfortunately not correct if you include the package inside a laravel 5.8 app.
As base_path returns the application root, there is the vendor directory missing in the path.
I suggest using __DIR__.'/../../resources/views' like in the setupViews() method to avoid that error.
Otherwise please include vendor in the path.
The text was updated successfully, but these errors were encountered:
Hi,
the view-path that you register in the \DesignMyNight\Laravel\Logging\MailableLogServiceProvider::register method is unfortunately not correct if you include the package inside a laravel 5.8 app.
As base_path returns the application root, there is the vendor directory missing in the path.
I suggest using
__DIR__.'/../../resources/views'
like in the setupViews() method to avoid that error.Otherwise please include vendor in the path.
The text was updated successfully, but these errors were encountered: