This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Wrapper Component for: https://bootstrap-datepicker.readthedocs.io/en/latest/ | |
usage: | |
import Datepicker from './Datepicker'; | |
Vue.component(Datepicker.name, Datepicker); | |
<datepicker type="text" | |
class="form-control" | |
name="birthdate" | |
placeholder="Birth Date" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: Git | |
doskey gs=git status | |
doskey ga=git add --all | |
doskey gc=git commit -m | |
doskey gp=git push -u origin master | |
doskey nah=git reset --hard origin/master $T git clean -fd | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Git | |
alias gs='git status' | |
alias ga='git add --all' | |
alias gc='git commit -m ' | |
alias gp='git push -u origin' #example: '$ gp branch-name' | |
alias nah='git reset --hard origin/master; git clean -fd' | |
#Composer | |
alias dump='composer dump-autoload' |