Laravel provides support for sending notifications across a variety of delivery channels, including mail, SMS (via Nexmo), and Slack. These notifications are informational messages that notify users of something that occurred in your application.
Questions tagged [laravel-notification]
143 questions
0
votes
1 answer
Not able to receive notification - Laravel with Socket.io
I'm trying to build a chat application and for that, I'm using Laravel's Echo and Laravel echo server. Idea is to listen for a message notification.
I have done everything according to…

Parth Vora
- 4,073
- 7
- 36
- 59
0
votes
0 answers
Notifications for comments are working but for likes not working in laravel
I am trying to send notifications to the owner of the post when some like and comment on his post, notifications for comments are working but when I do the same work for likes it is not working.
here is my notification class

DevTaabi
- 77
- 1
- 3
- 13
0
votes
1 answer
Laravel Nexmo SMS Notifications not sending
I am trying to send SMS notifications using Nexmo in Laravel, I have been following the official documentation guide.
For some reason my notifications do not send, but I don't get any errors at all.
I've set up my Notification…

user3574492
- 6,225
- 9
- 52
- 105
0
votes
1 answer
Where to find via() method and Notifiable model in Laravel 5.3?
I want to use laravel-notification-channels/ionic-push-notifications package in Laravel 5.3 app. but I can't find via() method and Notifiable model that are mentioned in the package documentation. where can I find them ??

Rowayda Khayri
- 489
- 1
- 9
- 21
-1
votes
2 answers
Attempt to read property "view" on null, laravel reset email notificaiton
When I try to send reset password notification, this error occurs
Attempt to read property "view" on null
this is the code line on which this error occurs
$this->notify(new ResetPasswordNotification($token));
this is my code inside notification…

Mohsin Ali
- 360
- 2
- 12
-1
votes
1 answer
How do I use Laravel notification toArray or toDatabase method with 'database' queue connection
I asked this question: Laravel notification toArray() not saving data to notifications table and afterwards, I just thought to change my queue connection back to 'sync' from 'database' and I found out that the toArray method saved to the…

Adefowowe
- 198
- 2
- 14
-1
votes
1 answer
Laravel Slack Notification response
I use the slack notification system from laravel to send messages in a channel.
I would like to access the response of the request to get the timestamp of the message posted to store it and modify the message later.
How could I get this response…
-1
votes
1 answer
Laravel Notification email per string
in my notifications i use the (MailMessage)->markdown('') syntax and it works.
Not, i want to "inject" the markdown from outside, so i need something like this
(MailMessage)->markdown(");
I think, you get the point.
When i now just…

Paladin
- 1,637
- 13
- 28