Adding a column with constant value to existing collection: $existing_col->map(function ($col) { $col[‘url’] = ‘http://your.url/here’; return $col; }); To add
Month: August 2020
Common URL Fillter
ASCII encoding Reference: Your browser will encode input, according to the character-set used in your page. The default character-set in
Fake Data Sites
Generate fake user data https://api.randomuser.me Example access code: fetch(“https://api.randomuser.me/?nat=US&result=1”) .then(res=>res.json()) .then(json=>json.results) .then(console.log) .catch(console.error); Lorem Ipsum Generator Fake file generator
Laravel Migration
Note: when creating a table with automatically increasing id, for example: $table->increments(‘id’); The type created in a Mysql table is
PHPStorm Quick Keys
Note: I don’t think letters are case sensitive Show class methods- CNTRL+F12 Code settings CNTRL+ALT+S (can set to psr-12 style)