调用未定义的方法Illuminate \ Notifications \ Notification :: send()

时间:2017-04-30 12:14:01

标签: laravel laravel-5 laravel-5.4 laravel-notification

我正在尝试在我的项目中建立通知系统 这些是我所做的步骤: 1-php工匠通知:表 2-php工匠迁移 3-php artisan make:通知AddPost

在我的AddPost.php文件中我写了这段代码:

<?php

namespace App\Notifications;

use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;

class AddPost extends Notification
{
    use Queueable;


    protected $post;
    public function __construct(Post $post)
    {
        $this->post=$post;
    }


    public function via($notifiable)
    {
        return ['database'];
    }




    public function toArray($notifiable)
    {
        return [
            'data'=>'We have a new notification '.$this->post->title ."Added By" .auth()->user()->name
        ];
    }
}

在我的控制器中我试图将数据保存在表格中,并且每件事情都很完美 这是我控制器中的代码:

<?php

namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Post;
use App\User;
//use App\Notifications\Compose;
use Illuminate\Notifications\Notification;
use DB;
use Route;

class PostNot extends Controller
{
    public function index(){
       $posts =DB::table('_notification')->get();
       $users =DB::table('users')->get();
       return view('pages.chat',compact('posts','users'));


    }
public function create(){

        return view('pages.chat');

    }


public function store(Request $request){
    $post=new Post();
   //dd($request->all());
   $post->title=$request->title;
   $post->description=$request->description;
   $post->view=0;

   if ($post->save())
   {  
    $user=User::all();
    Notification::send($user,new AddPost($post));
   }

   return  redirect()->route('chat');  
    }

}

在我更改此代码之前,一切都很顺利:

$post->save();

到此:

if ($post->save())
       {  
        $user=User::all();
        Notification::send($user,new AddPost($post));

       }

它开始显示错误,即: PostNot.php第41行中的FatalThrowableError: 调用未定义的方法Illuminate \ Notifications \ Notification :: send()

如何通过这个? 感谢。

3 个答案:

答案 0 :(得分:15)

而不是:

use Illuminate\Notifications\Notification;

你应该使用

use Notification;

现在您使用的是Illuminate\Notifications\Notification,它没有send方法,Notification外观使用Illuminate\Notifications\ChannelManager方法{。}}。

答案 1 :(得分:2)

使用此 use Illuminate\Support\Facades\Notification;

代替此 use Illuminate\Notifications\Notification;

为我解决了这个问题。

希望这对某人有帮助。

答案 2 :(得分:0)

用这个更好

<块引用>

使用通知

代替

<块引用>

使用 Illuminate\Support\Facades\Notification

这使得 send() 无法访问 [#Notification Databse]