Как исправить поиск уведомлений Laravel - PullRequest
0 голосов
/ 25 сентября 2019

Я весь день сталкиваюсь с проблемой, связанной с системой уведомлений Laravel

Поэтому я реализовал систему уведомлений через базу данных, создал базу данных уведомлений и использовал функцию уведомления при создании уведомлений, и она отлично работала.У меня проблема с получением уведомлений для аутентифицированного пользователя.

Я использую laravel 5.8

Когда я вызываю уведомления auth () -> user () -> в виде блейда, он возвращает пустую страницу (заголовок и телостраница также пуста) Я попытался войти в систему и отобразить результаты, используя tinker, и вызов этого метода (auth () -> user () -> notifications) немедленно закроет командную строку tinker, которую я проверял при вызове метода нав Интернете и возвращает пустую страницу с 500 внутренним кодом ошибки

Вот метод уведомления

<?php

namespace App\Notifications;

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

class SellerAprroved extends Notification implements ShouldQueue
{
    use Queueable;

    protected $user;

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

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

    /**
     * Get the mail representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    public function toDatabase($notifiable)
    {
        return [
            'user_id' => $this->user->id,
            'user_name' => $this->user->slug,
        ];
    }

    /**
     * Get the array representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function toArray($notifiable)
    {
        return [
            //
        ];
    }

А вот модель пользователя:

<?php

namespace App;

use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];
}

Вотуведомления, которые я пытаюсь отобразить в виде

auth()->user()->notifications
...