Как не добавить оповещение трансляции в очередь? Ларавелла 5.8 - PullRequest
1 голос
/ 14 октября 2019

чего я хочу добиться - это немедленно передать уведомление, вместо того, чтобы запускать

php artisan queue: listen

Если в классе Event мне просто нужно реализоватьСледуетBroadcastNow, чтобы события транслировались немедленно. Но я попробовал то же самое в Уведомлении, но оно не работает.

Уведомление

<?php

namespace App\Notifications;

use App\Tournament;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\BroadcastMessage;
use Illuminate\Notifications\Messages\MailMessage;

class TournamentAdded extends Notification implements ShouldBroadcastNow
{
    use Queueable;

    protected $tournament;
    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct(Tournament $tournament)
    {
        $this->tournament = $tournament;
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return ['database', 'broadcast'];
    }

    /**
     * Get the mail representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    public function toMail($notifiable)
    {
        return (new MailMessage)
            ->line('The introduction to the notification.')
            ->action('Notification Action', url('/'))
            ->line('Thank you for using our application!');
    }

    /**
     * Get the array representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function toArray($notifiable)
    {
        return [
            $this->tournament
        ];
    }
    public function toBroadcast($notifiable)
    {
        return new BroadcastMessage([
            $this->tournament
        ]);
    }
}

Выполнить уведомление

 $t = Tournament::latest()->first();
 $user->notify(new AppTournamentAdded($t));
...