When a key combination is displayed, the modifiers are written in the order presented here. For example, Control + Option + Shift + Command + Q would be written as ⌃⌥⇧⌘Q.
Sym | Key | Alt |
---|---|---|
⌃ | Control | |
⌥ | Option |
Seven different types of CSS attribute selectors | |
// This attribute exists on the element | |
[value] | |
// This attribute has a specific value of cool | |
[value='cool'] | |
// This attribute value contains the word cool somewhere in it | |
[value*='cool'] |
<?php | |
namespace App\Traits; | |
use Illuminate\Support\Str; | |
trait HasFilters | |
{ | |
public function scopeFilter($query, $filters = []) | |
{ |
vagrant@homestead:~/$ /etc/init.d/memcached status | |
* memcached is not running | |
vagrant@homestead:~/$ sudo /etc/init.d/memcached start | |
* Starting memcached: memcached. |
php artisan asset:publish --path="vendor\twbs\bootstrap-sass\assets" . |
"require": { | |
"laravel/framework": "4.2.*", | |
"twbs/bootstrap-sass": "3.2.*" // line to add Twitter Bootstrap Sass | |
}, |