This file contains hidden or 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
| ## This is a directory/file filter for WinMerge | |
| ## This filter is a helper for compare 2 laravel projects in Windows | |
| name: Exclude Laravel useless | |
| desc: Exclude additional data | |
| ## from Laravel Projects | |
| ## This is an inclusive (loose) filter | |
| ## (it lets through everything not specified) | |
| def: include |
This cheat sheet is automatically generated from GitHub Emoji API and Emoji Cheat Sheet.
This file contains hidden or 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
| * hasOne / hasMany (1-1, 1-M) | |
| -save(new or existing child) | |
| -saveMany(array of models new or existing) | |
| -create(array of attributes) | |
| -createMany(array of arrays of attributes) | |
| --------------------------------------------------------------------------- | |
| * belongsTo (M-1, 1-1) | |
| -associate(existing model) | |
| --------------------------------------------------------------------------- |
This file contains hidden or 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
| // Full API | |
| mix.js(src, output); | |
| mix.react(src, output); //<-- Identical to mix.js(), but registers React Babel compilation. | |
| mix.extract(vendorLibs); | |
| mix.sass(src, output); | |
| mix.standaloneSass('src', output); //<-- Faster, but isolated from Webpack. | |
| mix.fastSass('src', output); //<-- Alias for mix.standaloneSass(). | |
| mix.less(src, output); | |
| mix.stylus(src, output); | |
| mix.postCss(src, output, [require('postcss-some-plugin')()]); |
This file contains hidden or 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
| // Alerts | |
| @include alert-variant($background, $border, $text-color); | |
| // Background Variant | |
| @include bg-variant($parent, $color); | |
| // Border Radius | |
| @include border-top-radius($radius); | |
| @include border-right-radius($radius); | |
| @include border-bottom-radius($radius); |
This file contains hidden or 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
| #### Set Default Homepage | |
| ``` | |
| #Specify a default home page (index page) | |
| DirectoryIndex home.html | |
| ``` | |
| #### Specify IP Access | |
| ``` | |
| #Allow only specified IPs to access your site | |
| deny from all |