WPCN's avatar

WPCN wrote a comment+100 XP

2mos ago

Leveraging AI for Laravel Development: Ep 6, Developer-Driven AI

Excellent lesson, great illustration of the difference between Vibe Coding and Developer-Driven AI. Also nice illustration of cool things you can do with a Telegram bot :-)

WPCN's avatar

WPCN wrote a comment+100 XP

2mos ago

Leveraging AI for Laravel Development: Ep 1, Hello, Junie. Hello, Agent.

Before I saw this video I was sceptic about the benefits of talking to your computer, but you show how easy and fast it is. So now I’m looking at various apps that offer that (I checked Wispr Flow, but don’t want yet another subscription), here are some I found:

https://www.onresonant.com https://embertype.com https://sotto.to https://superwhisper.com

Anyone else using a dictating app which you could recommend?

WPCN's avatar

WPCN wrote a comment+100 XP

3mos ago

WPCN's avatar

WPCN liked a comment+100 XP

3mos ago

Laravel From Scratch (2026 Edition): Ep 31, Create A Functional Modal With AlpineJS

An easy way to add focus trap to the modal is to add this first party focus trap plugin: https://alpinejs.dev/plugins/focus

bootstrap.js

import axios from 'axios';
import Alpine from 'alpinejs'
import focus from '@alpinejs/focus'

window.axios = axios;

window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';

window.Alpine = Alpine;

Alpine.plugin(focus);
Alpine.start();

modal.blade.php

And you can add some extra spice by disabling scrolling when a modal is open:

body:not(:has([role='dialog'][aria-hidden])) {
    overflow: hidden;
}
WPCN's avatar

WPCN wrote a comment+100 XP

3mos ago

Laravel From Scratch (2026 Edition): Ep 30, Show A Single Idea

These videos go way too fast to code along. From now on I’ll just watch them instead of coding together with you.

WPCN's avatar

WPCN liked a comment+100 XP

4mos ago

Laravel From Scratch (2026 Edition): Ep 25, Tailwind Theme Setup And Initial UI

Color theme for those looking to copy:

    --color-background: oklch(0.12 0 0);
    --color-foreground: oklch(0.95 0 0);
    --color-card: oklch(0.16 0 0);
    --color-primary: oklch(0.65 0.15 160);
    --color-primary-foreground: oklch(0.12 0 0);
    --color-border: oklch(0.24 0 0);
    --color-input: oklch(0.24 0 0);
    --color-muted-foreground: oklch(0.6 0 0);
WPCN's avatar

WPCN liked a comment+100 XP

4mos ago

Laravel From Scratch (2026 Edition): Ep 25, Tailwind Theme Setup And Initial UI

Here are the full CSS component files for those looking to copy:

resources/css/components/btn.css

resources/css/components/form.css

WPCN's avatar

WPCN liked a comment+100 XP

4mos ago

Laravel From Scratch (2026 Edition): Ep 25, Tailwind Theme Setup And Initial UI

CodeRabbit is a paid service, and deserves every penny. But for a more laravel-native and free alternative, I'd recommend laravel-simplifier. php-simplifier's laravel-first version, kinda.

I commit and before pushing, I call Claude to scan with laravel-simplifier. Almost 99% accurate and most times I accept without touching anything. Then I push.

https://laravel-news.com/laravel-gets-a-claude-code-simplifier-plugin

WPCN's avatar

WPCN wrote a comment+100 XP

4mos ago

Laravel From Scratch (2026 Edition): Ep 11, Request Validation

Hi @jeffry ! With every lesson I get it more why you are so excited about Laravel, it’s pretty awesome what’s all in the box. Love your teaching style, it’s all super interesting and fun to watch as well. Thanks for creating this course, really enjoying it!