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

jacobodonnell's avatar

jacobodonnell wrote a comment+100 XP

2mos ago

Customizing Filament For User-Facing Apps : Ep 2, Set Up Two Filament Panels

There is no public repo on Laracasts for this course. Can you please make it public?

jacobodonnell's avatar

jacobodonnell wrote a comment+100 XP

2mos ago

Watch Me AI the UI: Ep 1, The First Try

Jeffrey, you're going to get yourself killed by some angry laid-off developer with all the AI courses you keep making

jacobodonnell's avatar

jacobodonnell wrote a comment+100 XP

2mos ago

Filament 5 in Depth : Ep 13, Using Filament in a Livewire Component

The source code link to the Github repo is broken. This is the actual link: https://github.com/laracasts/filament-5-in-depth

jacobodonnell's avatar

jacobodonnell wrote a comment+100 XP

3mos ago

Laravel From Scratch (2026 Edition): Ep 29, Idea Filtering

For verifying that the request status exists in the IdeaStatus enum, PHP has a nice built in method that Claude Code showed me:

$status = IdeaStatus::tryFrom($request->status ?? '');

It will return the value if it exists or null otherwise.

jacobodonnell's avatar

jacobodonnell liked a comment+100 XP

3mos ago

Laravel From Scratch (2026 Edition): Ep 12, Form Request Classes

At 7:28 I assume you meant to remove a validation rule, however there isn't one currently in the update method. Instead you remove the update on the Idea model. Presumably this is a mistake? Great tutorial so far btw :)