jacobodonnell wrote a comment+100 XP
2mos ago
There is no public repo on Laracasts for this course. Can you please make it public?
jacobodonnell wrote a comment+100 XP
2mos ago
Jeffrey, you're going to get yourself killed by some angry laid-off developer with all the AI courses you keep making
jacobodonnell wrote a comment+100 XP
2mos 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 wrote a comment+100 XP
3mos 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 liked a comment+100 XP
3mos 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 :)