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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Title here</title> | |
| <meta name="application-name" content="Application Name" /> | |
| <meta name="author" content="John Doe" /> | |
| <meta name="description" content="Description of page" /> | |
| <meta name="keywords" content="keywords here,with commans,inbetween"> |
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
| Laraval 4 Hints and Tips | |
| - Get real class behind a Facade: | |
| $root = get_class(Form::getFacadeRoot()); | |
| var_dump($root); |
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
| Sublime Text 2 Cheat Sheet ;-) | |
| http://sublime-text-unofficial-documentation.readthedocs.org/en/sublime-text-2/index.html | |
| Packages/plugins: | |
| - "Package Control" -> https://sublime.wbond.net/installation#st2 | |
| - "AdvancedNewFile" -> Ctrl+Alt+n | |
| - "Emmet" - Used to be Zen Coding -> http://docs.emmet.io/ | |
| - "Emmet CSS Snippets" |
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
| Laravel on Windows (8.1) | |
| - PHP 5.3.7 or higher - e.g. WampServer Version 2.2 | |
| - mCrypt must be present (usually is) | |
| - openssl enabled in php.ini e.g. C:\wamp\bin\php\php5.4.3\php.ini | |
| - Install Composer -> https://getcomposer.org/Composer-Setup.exe | |
| - httpd.conf includes httpd-vhosts.conf | |
| - Install Laravel in web root or web root subfolder: | |
| "composer create-project laravel/laravel --prefer-dist" (--prefer-dist forces package download) | |
| - Create Virtual Hosts - point to vhost directory ...\laravel\public (restart Apache) |
NewerOlder