Bogdan Vovchuk
Bogdan Vovchuk
If add to from dynamic field e.g: ``` $form->field($product, 'dynamic_attribute_name') ->dropDownList(explode(',', $attribute->variants), ['required' => $attribute->required]) ->label($attribute->title); ``` those attributes will not saved.
Let's say I have array of files, that are coming from API. How can I correctly add them to the uploader instance?
- Webpack config: ``` const plugins = [ new ExtractTextPlugin({filename: '[name].[contenthash].css', allChunks: true}), new PurgecssPlugin({ paths: glob.sync([ path.join(__dirname, './../app.html'), path.join(__dirname, './../**/*.vue') ]) }) ]; const rules = [ { test:...
Add into afterDelete method deleting related translations data. Just like this: ` public function afterDelete() { if ($this->translations) { PostTranslation::deleteAll(['post_id' => $this->id]); } } `
Is it possible to unselect all selected before elements?
How do we change the attributes of objects dynamically? For example, I want to change the scaleX, scaleY: ``` ScaleX: ScaleY: ``` Then I have a watcher: ``` watch: {...