Top "Laravel-notification" questions

Call to undefined method Illuminate\Notifications\Notification::send()

I am trying to make a notification system in my project. These are the steps i have done: 1-php artisan …

laravel laravel-5 laravel-5.4 laravel-notification
Laravel Notification - Call to a member function routeNotificationFor() on string

Laravel 5.5 Controller public function sendBookingSms(){ $checkState = session()->get('checkState'); $staffs = Staff::whereIn('staffId',$checkState)->get(); foreach ($…

php email laravel-5 laravel-5.5 laravel-notification
Laravel 5.3 Notification Vs Mailable

I am a little confused about whether to use Laravel's Notification or Mailable class. From what I understand, Mailables are …

laravel laravel-5.3 laravel-mail laravel-notification
Laravel 5.3 Send Notification to Users without an account

With the Laravel 5.3 Notification feature, I see that the notifications are sent to users like this: $user->notify(new …

laravel laravel-5.3 laravel-mail laravel-notification
Extracting data from notification database in Laravel

I was saved my notification into database like this: public function toDatabase($notifiable) { return [ 'from' => $this->message->…

laravel laravel-5 laravel-notification
Laravel 5.3 How to show Username in Notifications Email

I am trying to add the user's first name in the notification emails. At the moment, Laravel notification emails starts …

laravel notifications laravel-5.3 laravel-mail laravel-notification