Fenos\Notifynder\Models\Notification::getStack PHP Метод

getStack() публичный Метод

Get the full stack of notifications if this has one.
public getStack ( ) : null | Illuminate\Database\Eloquent\Collection
Результат null | Illuminate\Database\Eloquent\Collection
    public function getStack()
    {
        if ($this->hasStack()) {
            return static::byStack($this->stack_id)->get();
        }
    }