Ran into this today. I am working on a project where I need to copy html to the user's clipboard. I couldn't use Alpine's native feature since I needed to specify that the copied text was html.
ClipboardItem(['text/html'] : "<div>Stuff</div>")
#laravel #livewire #php
Posts by Ditto
@taylorotwell.bsky.social Forgev2 looks amazing. The instant ssh feature is going to make team troubleshooting so much easier. Amazing.
Nightwatch is probably going to be my first buy after this Laracon. Anything to ensure that our payment jobs and https request aren’t bugging out without throwing flags.
#laracon #laravel
@nunomaduro.com
Amazing talk. I can’t wait to start using ->debug() in my testing. Thank you for making me not want to jump off a building every time I test.
The great thing about Github is merging branches.
The terrible thing about Github is merging branches.
#laravel #Laravel #php
PromptsForMissingInput === Pure Gold
I totally missed this implement. Thanks for highlighting it.
I feel like I am finally starting to understand Buses. I can finally stop scheduling 10 jobs with 15m gaps.
#laravel #Laravel #php
🫵 You @ Laracon US
🎟️ WIN a ticket to the conference
FREE to enter
Goodies for 🥈 and 🥉 place too!
👉 nativephp.com/laracon-us-2...
Url params are super easy in Livewire. I was putting off working on this feature since I didn't want to pass the params to the back end and all that jazz. Name the variable, add the property, and bam - done.
#laravel #livewire
Laracon 2025! Get your tickets early. They tend to go pretty quick.
#Laracon #Laravel #php
laracon.us
Depends on the use-case, but I know I use laravel for a lot of integration work, binding whatever api with NetSuite. I could see having customizable actions triggered to webhooks being useful. I would give it a star on GitHub.
Oh yes, I wouldn’t recommend this approach with more complex names. I am pulling from a user base where the names are already set as separate first and last names without prefixes.
Writing an API spec is a great start, but if you're not validating that your implementation matches your spec, you're not getting the full value out of the spec. I share a story from a recent project that highlights this point. masteringlaravel.io/daily/2025-0...
My data sucks. Make it suck less.
I started using Attributes on my models to help clean up my database, creating more consistent entries. It's a clean way of casting you models in and out of the database.
#laravel #php
Filament Tip
I find myself having some tables stripped and some that I forget to strip on my panels. If you want to be consistently and lazy, set your filament table in you AppServiceProvider to always be stripped.
#laravel #php #Filament
I think Fartcoin is the universe making a clear point that I don’t understand economics.
Checking in to watch Jason’s stream. It’s really cool to see his process and thought patterns.
#laravel #php
www.youtube.com/live/-RpxNDy...
Alright, here is something that I took too long to start using -- datasets. I started making datasets that are made with data from production that experienced some type of bug.
New bug -> add to dataset.
When it passes the tests = Its good forever ... mostly.
#Pest #PHP #Laravel
Wow, this looks great. I bet this is a game changer for a lot of consultants— making it easier to keep tabs on old projects.
Absolutely. I have a few widgets I use on most of my projects to integrate with Netsuite. Obviously, super niece. So, Filament's custom widgets are the easy solution. I think its my favorite package.
Boom...
Set config...
Publish config...
Error that I got...
Ran across this issue yesterday -- Huge CSVs.
By default, Livewire sets the max size of files in temp to 12MB. I need a lot more space so I published the config files and set a new max. The, boom, it works.
#livewire
#laravel
#PHP
I love Filament. Working on a project where I need to let the user download a CSV. What would take weeks only takes hours with Filament. Filament has features for Import, Export, and Database Notifications.
#PHP #Laravel #Filament
Plus, the ability to create custom widgets makes connecting to services like Horizon so much easier.