Open aleemb opened 8 years ago
Also see Notifications
section at https://laravel.com/docs/5.3/upgrade
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');
and all seems to work well
Laravel 5.3 introduces it's NotificationServiceProvider for https://laravel.com/docs/5.3/notifications which conflicts with this package.