Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

chilldsgn's avatar

chilldsgn wrote a comment+100 XP

1mo ago

Neovim as a PHP and JavaScript IDE: Ep 6, Configuring your Terminal for Neovim

@NeoScripter I've been using Wezterm on Ubuntu and on my Macbook. It's great. It is available for Windows. Could try that instead of Kitty

chilldsgn's avatar

chilldsgn liked a comment+100 XP

5mos ago

React, The Laravel Way: Ep 8, User Accounts And Login UI

@chilldsgn Awesome! I've been spending time with this part

chilldsgn's avatar

chilldsgn liked a comment+100 XP

5mos ago

React, The Laravel Way: Ep 11, Processing State From The useForm Helper

Similar to previous lessons, if Ziggy isn't installed, you can replace:

patch(route('puppies.like', puppy.id), { preserveScroll: true });

with:

patch(like(puppy.id).url, { preserveScroll: true });

Note that you need the url property as patch requires a string as the first parameter.