We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel 5.3 introduces it's NotificationServiceProvider for https://laravel.com/docs/5.3/notifications which conflicts with this package.
The text was updated successfully, but these errors were encountered:
Also see Notifications section at https://laravel.com/docs/5.3/upgrade
Notifications
Sorry, something went wrong.
Quick-fix: If you do not use Laravel notifications just comment out Notification alias.
@edvinaskrucas I recommend to use Notice instead of Notification in L5.3+ (useful link).
I used it on Laravel 5.3 like this
'HtmlNotification' => Krucas\Notification\Facades\Notification::class, then HtmlNotification::success('Success message');
'HtmlNotification' => Krucas\Notification\Facades\Notification::class,
HtmlNotification::success('Success message');
and all seems to work well
No branches or pull requests
Laravel 5.3 introduces it's NotificationServiceProvider for https://laravel.com/docs/5.3/notifications which conflicts with this package.
The text was updated successfully, but these errors were encountered: