Joaquín Marcher
Joaquín Marcher
I made some progress as you can see on that thread, my problem is that the event is not triggered whenever I press Escape or Enter, any clues why?
@mkwsra @eduardokum Version 2 already supports Laravel 6 (has some breaking changes), hope to see Laravel 7 support
PHP 8.3 was just released, it may take a while or you could open a PR to add it, I'm not using Linux at the moment.
Yes or you can also use compact() and the code will be something like: ``` Route::get('posts', function() { $posts = Post::all(); return View::make('posts.index', compact('posts')); }); ```
I would love to have this
Thanks all for showing interest I went with @Adesin-fr I can already see a new release so that means good news for Valet Linux!
This will break for old PHP versions
The PR needs some work
The problem is that depending on the Package Manager the PHP version names may differ, we try to guess the package name here: https://github.com/cpriego/valet-linux/blob/a8d22a4b51b6540fa03da523ca35d10bc4c83b53/cli/Valet/PhpFpm.php#L521
Not everyone switches between php versions, therefore we need to guess the installed php version for them.