jacobodonnell's avatar

jacobodonnell wrote a comment+100 XP

1mo ago

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

1mo ago

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

1mo ago

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

2mos ago

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

2mos ago

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 :)