Vladimir Mityukov
Vladimir Mityukov
Hi, Is there an option to glue image to one of sides? Say, if it's configured to "stick to bottom", the following effects will be applied: - User can move...
Здравствуйте, а можно пример как реализовать управление видимостью маркеров? У меня получается что-то такое: 1. `v-show` — не работает в принципе 2. `v-if` — учитывается только при загрузке компонента. После...
Hi, yesterday I did some upgrade: 1. Alpine 2 to Alpine 3 2. Livewire 2.4.4 to Livewire 2.5.3 After the upgrade, some of Livewire widgets stopped working with these errors:...
There is an option to request specific set of "user fields", when working wit some of other providers. Example: ``` $fbUser = Socialite::with('facebook') ->fields([ 'id', 'name', 'email', 'picture' ]) ->user();...
From time to time, I get this error when trying to send email: cURL error 56: OpenSSL SSL_read: error:140943FC:SSL routines:ssl3_read_bytes:sslv3 alert bad record mac, errno 0 (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) (laravel 7,...
Just noticed (quite recently…) that issuing `gulp --production` does not "clean up" my javascript files anymore. It does minification. But I get `console.logs` and "Vue is in dev mode" warning...
I've faced a situation when waitForElement() is practically useless, as the element to "intercept" is actually loaded inside an iframe. This is with Google's reCaptcha widget. ```php // ... ->andClick('recaptcha_box_1')...
Hi, let me show you two examples: 1. Laravel-way: ```php $this->visit('/') ->click('Login') ->seePageIs('/login'); ``` 2. Selenium: ```php $this->visit('/') ->clickCss('[href="http://mappanel.dev/login"]') // 1. Can't use just the ::click('link text') here... ->updateCurrentUrl() //...
Hi, I have a question: is there a way to export or write all the necessary configuration (including routing, server profiles, etc) to a file and then send this file...