edvinaskrucas / notification

Notification package for Laravel
MIT License
526 stars 98 forks source link

Conflicts with L5.3 NotificationServiceProvider #77

Open aleemb opened 8 years ago

aleemb commented 8 years ago

Laravel 5.3 introduces it's NotificationServiceProvider for https://laravel.com/docs/5.3/notifications which conflicts with this package.

aleemb commented 8 years ago

Also see Notifications section at https://laravel.com/docs/5.3/upgrade

Kyslik commented 7 years ago

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).

EazyServer commented 7 years ago

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