Zep Fietje
zepfietje.com
Zep Fietje
@zepfietje.com
Found this nugget in symfony/intl 7.4/8.0, released yesterday.

I’m using it to show localized pricing based on the visitor’s country and available price currencies retrieved directly from Stripe.

Thanks, Symfony team! (And congrats on the 8.0 release! 🥳)
November 28, 2025 at 12:02 PM
Whizzy and Filament Themes are running on PHP 8.5 already 🤘

Anyone else upgraded yet?
November 27, 2025 at 11:36 AM
Aaand another early access user onboarded to the new Filament Themes platform!

So happy with everyone’s positive responses ☺️

Keep an eye on your inbox if you’re on the list!
November 25, 2025 at 2:27 PM
Anyone got a clue when PHP 8.5 support will land in Laravel Forge?

Can't wait to start using the pipe operator and array_first/array_last functions... 😄
November 24, 2025 at 1:07 PM
Looks like it was only added two years ago!
November 19, 2025 at 7:16 AM
Only after so many years of using Laravel, I just found out that an empty dd() call dumps the bug emoji on your page… 🐛

Nice one! 😂
November 18, 2025 at 12:34 PM
Have you seen the new factory “insert” method introduced in last week’s Laravel release?

Just used it to refactor store creation for the Filament Themes demo — so much cleaner. 🤤

Thanks @cosmastech.bsky.social! 🫶
November 11, 2025 at 9:58 AM
Woohoo! Safari is finally usable again. 😂

Thanks for listening to the complaints, Apple. 🍎
November 10, 2025 at 3:24 PM
Tiny details like this button loading state are such a joy to work on…

Don’t ask me why 😂
October 29, 2025 at 10:39 AM
Pro tips when using Git hooks in your Laravel project 👇

1. Store hooks in .hooks to version them with Git.

2. Add "git config core.hooksPath .hooks" to your Composer setup script to link the hooks during setup after cloning the repo.

Super easy, zero dependencies.
October 21, 2025 at 8:23 AM
I’m wondering if PHP property hooks can fully replace Laravel’s accessors and mutators on Eloquent models.

Has anyone tried relying only on native hooks instead of Eloquent’s feature?

Any limitations you’ve hit?
October 16, 2025 at 10:03 AM
Trash your banners, callouts, toasts, and notifications.

Inline feedback is often enough: clear, unobtrusive, and right where the user is focused. 👇
October 14, 2025 at 2:31 PM
Gotta love a good-looking, fully accessible, keyboard-controllable tabs component. 🤤
October 11, 2025 at 3:35 PM
Keep your Blade views clean by moving Alpine.js attributes into your component’s JS file.

Then, all you need in your Blade view is:
x-data="tabs"
October 10, 2025 at 2:27 PM
Automatically include component CSS and JS in your compiled assets by adding these two lines to your app.js file.
October 10, 2025 at 2:27 PM
Okay, I found the perfect way to write Blade + Alpine.js components. 👇

Blade, CSS, and JS, all grouped in a single component folder.

Can’t imagine doing it any other way now…
October 10, 2025 at 2:27 PM
Even better for simple single-line getters... 👇
October 8, 2025 at 6:17 PM
Using PHP property hooks a lot lately.

Absolutely love this “memoized computed property” pattern. It ensures computationally heavy class properties are calculated only once, even when accessed multiple times.

So much cleaner than a separate method and property. 🤤
October 8, 2025 at 12:02 PM
Did you know @filamentphp can auto-discover custom Livewire components in your panel?

Just like it does for resources, pages, and widgets. Perfect for keeping panel-specific components organized, scoped to the panel, and alongside your main folders. 👌
October 6, 2025 at 3:39 PM
Working hard to become a true bake-end developer… 🥖
October 3, 2025 at 1:47 PM
Did you know macOS now has a clipboard manager built into Spotlight? (Only took them how many years? 😂)

Just press command + space and then command + 4.

Really digging the Spotlight improvements in macOS Tahoe in general! 👍
September 30, 2025 at 10:18 AM
Discussion settled once and for all!

The absolute truth, Nielsen Norman Group, tells you to not repeat password fields! 🤣
September 30, 2025 at 7:35 AM
Fun fact:

Laravel’s latest products, Nightwatch and Cloud, also follow the single-password-field pattern at sign-up! 😄

Laravel Cloud even leaves out the name field. Makes me wonder if that would be an even better approach...
September 29, 2025 at 6:27 AM
Unpopular opinion: “Confirm password” fields are bad.

Forcing users to enter passwords twice adds friction and lowers conversion rates.

Why optimize for a couple users who make a typo? Just let them reset their password.

More friction for a few, less friction for most. 👌
September 26, 2025 at 11:30 AM
Feels so good when a design finally comes together 😌
September 24, 2025 at 6:27 PM