DevHero
DevHero
Hello @divine > Eloquent code provided _a magic_, you could do embedding relation on your own inside your documents without any problem. Please example alternative for embed inside document. I'm...
Hello @Giacomo92 I like embed because 1. embed read performance better than multiple collections. 2. embed easy to where, find _id, update, create on inner sub-document. Example addos [ {...
Maybe this bug? ` parts.push(lineSuffix(concat([beforeCloseTag, "?>"])));` to ` parts.push(lineSuffix(beforeCloseTag));` https://github.com/prettier/plugin-php/blob/48e0489a97125b6ce1273087130100b772e2e620/src/printer.js#L1109
Hello @czosel result of contributing prettier-php **\node_modules\.bin\prettier test.php** ### TEST 1 **Input** ``` ``` **Output** ``` ``` ### TEST 2 **Input** ``` ``` **Output** ``` ``` **Output** ``` ?> ```...
Hello @kiaking I think "sync" option can be add if enabled sync option , the first remove all data on current model and remove all relations only hasOne , hasMany...
Hello cuebit Thank you so much : ) I use this but not work with static method on myModel i see $cookies on prototype model , but cannot call because...
Hi nada When we need to call $curl->get() after $curl->post() , curl option "CURLOPT_CUSTOMREQUEST" doesn't work because curl option remember CURLOPT_CUSTOMREQUEST = POST fixed add $this->setOpt(CURLOPT_CUSTOMREQUEST, "GET"); into the get...
i confirm CTRL + C _doesn't_ work with termination powershell , cmd , putty work with ctrl+c
i see your option connectOnLogin is not working because laravel-echo have been auto connect() on constructor ``` constructor(options: any) { this.setOptions(options); this.connect(); } ``` what do you think?
I understand what you suggest. But because this code has been developed for a long time. Thanks. My solution create ".jsbeautifyrc" ``` { "indent-size": 2, "wrap-attributes": "preserve", "wrap-attributes-indent-size": 2, "content_unformatted":...