Fenos\Notifynder\Models\Notification::getStack PHP Method

getStack() public method

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