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

hardflip's avatar

hardflip liked a comment+100 XP

1w ago

AWS Fundamentals: Ep 9, Budgeting and Cost Savings

Don't forget to terminate your ec2 instances otherwise you will be incurring some cost!

hardflip's avatar

hardflip liked a comment+100 XP

1mo ago

AWS Fundamentals: Ep 4, VPCs in Action

@laracasts2020 I ran into this too. I looked it up and it seems like you need to run:

sudo chmod 600 [name-of-key-file]

from within your public instance.

hardflip's avatar

hardflip liked a comment+100 XP

1mo ago

Vibe Coding Workshop: Ep 8, Vibe Designing

Outstanding lesson! Making AI do good UIs is super tricky, and I love this approach of starting up with a design styleguide. I've had success with a similar approach.

Essentially, it's providing context once again, but in terms of design decisions and opinions! 🤙

hardflip's avatar

hardflip liked a comment+100 XP

2mos ago

Motion For The Web: Ep 37, GSAP

I've noticed that some GSAP animations and elements may not work properly, or even display, if a user is using Ad blocking. That would be a consideration when designing with it.

Definitely test with a cleared cache and Ad blocking in place to see if visitors may have problems seeing or interacting with your content.

hardflip's avatar

hardflip liked a comment+100 XP

5mos ago

Motion For The Web: Ep 1, Why Motion?

A series similar to Jeff’s “PHP for Beginners”, where it starts simple and slowly grows into more advanced topics, would be amazing to have for vanilla CSS.

There’s a lot of Tailwind content on Laracasts, which is great, but having a modern, ground-up CSS series would really fill a gap. I think you’d be a great person to teach it since most of your courses already lean toward frontend fundamentals.

hardflip's avatar

hardflip wrote a comment+100 XP

5mos ago

Eloquent Relationships Deep Dive: Ep 5, Polymorphic Relationships

content => 'poly relationships are cool'
That could be taken in a couple different ways

My sides 🤣

hardflip's avatar

hardflip wrote a comment+100 XP

5mos ago

Eloquent Relationships Deep Dive: Ep 3, Many-to-Many Relationships

After digging a bit through the Laravel Docs I didn't really find the 'implicit' way you created an accessor on the Pivot Model. However, I did find an explicit way. I presume those two are equivalent and that the 'implicit' is using some sort of 'magic' under the hood.

My question is if the Laravel Documentation is missing the implicit how can we learn more about them and how they work?