Answer the question
In order to leave comments, you need to log in
How to view sent notification?
I have created a notification which is written to the db.
But there really is no information.
How can I see it?
and why is the data field the same content?
public function toDatabase($notifiable)
{
return [
'order_id' => $this->details['order_id']
];
}
public function sendNotification()
{
$user = User::first();
$details = [
'greeting' => 'Hi Artisan',
'body' => 'This is my first notification from ItSolutionStuff.com',
'thanks' => 'Thank you for using ItSolutionStuff.com tuto!',
'actionText' => 'View My Site',
'actionURL' => url('/'),
'order_id' => 101
];
Notification::send($user, new MyFirstNotification($details));
dd('done');
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question