// the find
JeffreyWay/30-days-to-learn-laravel
The completed source code from Jeffrey Way's '30 Days to Learn Laravel' course on Laracasts. It's a job board app covering auth, Eloquent relationships, policies, queues, and mail — standard tutorial fare, not a reusable starter kit.
The app covers a good slice of Laravel's surface area in one place: Blade components, policies, queued jobs, and Mailables all show up without being contrived. The component library (form-field, form-error, nav-link) is broken into small, single-purpose pieces, which is actually good practice. Factories and seeders are present and properly wired, so you can spin up test data without hand-rolling SQL.
The README is the default Laravel framework README — it says nothing about the course, the app, or how to set it up. There are exactly two tests, both placeholder stubs ('ExampleTest'), so the test setup is theater. Last pushed April 2024, pinned to whatever Laravel version was current then, with no indication it'll track updates. If you're not following the Laracasts course alongside it, the code is hard to use as a standalone reference.