Suppose that we have a social website that users can follow each other. Is it a better idea to use Laravel Notification to notify the user that someone wants to follow him or someone accepted his follow request or Laravel Mailable instead?
I have already read this question and seems that Mailable is a better idea because the recipient and the email content is not the same (in the content I have to say that $thisUserId is requesting to follow you, or $thisUserId accepted your follow request.
What is the best way to implement this (follow request, follow accepted) or other actions such as your friend commented on your post or something like this?
Laravel Notification or Laravel Mailable?