Skip to main content

Posts

Showing posts from May, 2021

How to change User’s password in Laravel

These ways to change user’s password in Laravel 

How to create a virtual domain in localhost

If you are using XAMPP: Go to XAMPP version folder and open the file C:\xampp72\apache\conf\extra\httpd-vhosts.conf NameVirtualHost *:80 <VirtualHost *:80>     ServerAdmin xyz@gmail.com     DocumentRoot "DocumentRoot_folder"     ServerName xyz.dev.com     ErrorLog "logs/xyz.dev.com-error.log"     CustomLog "logs/xyz.dev.com-access.log" common </VirtualHost> <VirtualHost *:443>  DocumentRoot "DocumentRoot_folder" ServerName xyz.dev.com <Directory DocumentRoot_folder> AllowOverride All Order Deny,Allow  Allow from all </Directory> SSLEngine on SSLCertificateFile "conf/ssl.crt/server.crt" SSLCertificateKeyFile "conf/ssl.key/server.key"  </VirtualHost> <VirtualHost *:80>     ServerAdmin xyz@gmail.com     DocumentRoot "DocumentRoot_folder"     ServerName localhost     ServerAlias localhost   ...

Lightning tooltip on mousehover

Lightning tooltip on mousehover In component file: <aura:component >     <aura:attribute name="tooltip" type="boolean" default="false" />     <div style="padding-left:2rem;padding-top:5rem;position:relative">         <a href="" aria-describedby="help" onmouseover="{!c.showToolTip}" onmouseout="{!c.HideToolTip}">Help Text</a>         <aura:if isTrue="{!v.tooltip}" >             <div class="slds-popover slds-popover_tooltip slds-nubbin_bottom-left" role="tooltip" id="help" style="position:absolute;top:-4px;left:35px">                 <div class="slds-popover__body">Show ToolTip.</div>             </div>         </aura:if>     </div> </aura:component> In controller js file ({  showToolTip...