Felix Bernhard
Felix Bernhard
I would love to see this implemented! A shared app context is usually used by modal apps. I've put together a short demo on stackblitz, which is based on the...
Unfortunately, I don't even know where to start. I looked through this repository, but I have no idea how any of these things work 😅 > use a utility function...
The actual method in Laravel's Query Builder `\Illuminate\Database\Query\Builder::select()` looks like this: ```php public function select($columns = ['*']) { $this->columns = []; $this->bindings['select'] = []; $columns = is_array($columns) ? $columns :...
Thanks for looking into this! One additional note: The function `func_get_args()` is used a total of three times in `Builder.php`: 1. [`select($columns = ['*'])`](https://github.com/laravel/framework/blob/fffdd53a608c79b64d18a72398435c634d5db6ac/src/Illuminate/Database/Query/Builder.php#L280) 2. [`addSelect($column)`](https://github.com/laravel/framework/blob/fffdd53a608c79b64d18a72398435c634d5db6ac/src/Illuminate/Database/Query/Builder.php#L432) 3. [`distinct()`](https://github.com/laravel/framework/blob/fffdd53a608c79b64d18a72398435c634d5db6ac/src/Illuminate/Database/Query/Builder.php#L460) If the...
Thanks for the fix, everything works as expected! I think this ticket can be closed.
I've found the reason for this unexpected behavior: The `symfony/finder` package simply does not support this type of relative directory exclusion. ## Simple Example Let's examine the following command: ```sh...
Here's a rough implementation that works for this specific use case. I don't know if this breaks any other stuff though. ```php // but we only want to check the...
Well, quitting LocalSend completely (either from the tray menu, or via the task manager) does work, but only 10% of the time for me. Sometimes, running LocalSend as Administrator did...
Hey @AnonCYTO, I can confirm that I have PowerToys installed and FancyZones enabled. I was still experiencing issues today, so I unchecked the `Move newly created windows to the last...
The same is happening on one of our webpages. We are currently updating a legacy code base from Vue 2 to Vue 3, so I installed Vue DevTools v7 for...