Building Laracasts
While many courses at Laracasts focus on the workflow of building something entirely from scratch, this one is a bit different. Come along as I work on the Laracasts codebase, itself. Each episode is unique. One might cover a new Vue component we need for the UI. Another episode may require that we TDD a new feature entirely. So pull up a chair and let's get to work.
Progress
Series Info
- Episodes
- 6
- Run Time
- 1h 35m
- Difficulty
- Intermediate
- Last Updated
- May 26, 2020
- Version
- Latest
Series Episodes
- The Series Page (1)
- Widgets (3)
Widget Workshop
Have you ever had a controller action that, over time, grows and grows as you declare and fetch all necessary data for each new section of the page? Very quickly, things can become messy. Lately, I've been thinking about an alternative, widget-based approach for structuring portions of my views. Come along as I build this useful newWidgetclass from scratch.Rapid Laravel Package Development
In the previous episode, we tinkered around with the idea of widgets for our views. Let's now, mostly for learning purposes, extract this code into a reusable Composer package that anyone can pull in. When I need to create a new project, I always pull in Laravel Packager to expedite the setup process.Testing and Deploying Laravel Packages
If you can't prove - through automated tests - that your package works correctly, how do you expect users to trust you? In this episode, we'll write a series of tests to confirm that our widget functionality works as expected. Once complete, we'll deploy the code to GitHub. At that point, the only remaining step is to submit to Packagist.org.
- Content Classification (1)
- Tricky CSS Effects (1)
Scrolling CSS Shadows
Most of our day-to-day programming isn't glamorous. Sometimes, you'll find yourself spending hours getting a shadow to render correctly. In fact, that's exactly what I'm here to show you today. I recently needed to allow for scrolling CSS shadows that only display when a content area can be scrolled in a particular direction. Luckily, as with so many things on the web, this tricky problem was solved years ago by Lea Verou. Let's learn the secret sauce she implemented to make this particular technique work.
