$ docker
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
| { | |
| "added_words": | |
| [ | |
| "Laravel" | |
| ], | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", | |
| "ensure_newline_at_eof_on_save": true, | |
| "findreplace_small": true, | |
| "font_face": "Dank Mono", |
The schema builder contains a variety of column types that you may specify when building your tables:
The schema builder contains a variety of column types that you may specify when building your tables:
| Command` | Description |
|---|---|
$table->bigIncrements('id'); |
Auto-incrementing UNSIGNED BIGINT (primary key) equivalent column. |
$table->bigInteger('votes'); |
BIGINT equivalent column. |
-
laravel-sitemap spatie/laravel-sitemap Github: https://github.com/spatie/laravel-sitemap
-
seotools artesaos/seotools Github: https://github.com/artesaos/seotools
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
| <?php | |
| $start = microtime(true); | |
| // Do stuff | |
| dd(microtime(true) - $start); |
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
| # ############################################################################## | |
| ##### HEROKU TOOLBELT COMPLETE GUIDE ########################################### | |
| ################################################################################ | |
| # Installing Heroku toolbelt using command line | |
| # For MacOS... | |
| brew tap heroku/brew && brew install heroku |
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
| /* ******************************************************************************************* | |
| * GLOBAL CONFIG | |
| * Vue.config is an object containing Vue’s global configurations. | |
| * You can modify its properties listed below before bootstrapping your application. | |
| * https://vuejs.org/v2/api/#Global-Config | |
| * ******************************************************************************************* */ | |
| // Configure whether to allow vue-devtools inspection | |
| Vue.config.devtools = true |