App\Models\Access\User\Traits\Attribute\UserAttribute::getActionButtonsAttribute PHP Method

getActionButtonsAttribute() public method

    public function getActionButtonsAttribute()
    {
        if ($this->trashed()) {
            return $this->getRestoreButtonAttribute() . $this->getDeletePermanentlyButtonAttribute();
        }
        return $this->getLoginAsButtonAttribute() . $this->getShowButtonAttribute() . $this->getEditButtonAttribute() . $this->getChangePasswordButtonAttribute() . $this->getStatusButtonAttribute() . $this->getConfirmedButtonAttribute() . $this->getDeleteButtonAttribute();
    }