π Weβre preparing the 2nd edition of the Laravel Catalunya Online Meetups!
Weβve our first confirmed talk with @juststeveking.com (AKA βThe API Guyβ):
π€ Maxing out phpstan on a Laravel app
More info coming soon.
π Weβre preparing the 2nd edition of the Laravel Catalunya Online Meetups!
Weβve our first confirmed talk with @juststeveking.com (AKA βThe API Guyβ):
π€ Maxing out phpstan on a Laravel app
More info coming soon.
π The video of the first online meetup of Laravel Catalunya is now available!
Thanks to everyone who made this first community gathering possible. π
Watch it here π
π youtu.be/Xqx4VVNRspA?...
#Laravel #PHPCatalunya #LaravelCatalunya
π The 1st Laravel Catalunya Online Meetup is here!
Weβre launching our online meetups to share knowledge and grow the community.
π₯ Watch the livestream:
π youtube.com/live/jrXB9Sn...
π Thanks to our sponsor Creagia for the support!
#Laravel #LaravelCatalunya #PHP #Community
π Weβre excited to welcome Creagia as the first official sponsor of Laravel Catalunya! π
Thanks for supporting the Laravel community and local tech talent π
π laravelcatalunya.online
#Laravel #LaravelCatalunya #TechCommunity #Sponsorship
π Laravel Catalunya meetups are kicking off!
π
Feb 19 Β· β° 6:00 PM (CET)
π First online meetup
More details soon! Save the date!
#Laravel #LaravelCatalunya #PHP #Meetup #TechCommunity
While Iβm adapting my website to work with Markdown, Iβm taking the opportunity to share a short article about Rector, an essential tool for modernizing PHP code π
#PHP #Laravel #RectorPHP #WebDevelopment #CleanCode #DevTools
axliro.dev/articles/ref...
Happy New Year!
From Laravel Catalunya, we wish you a year full of health, learning, and great code.
Thank you for helping the community grow every day.
π£ If youβre not there yet, join our Telegram channel.
laravelcatalunya.online
Happy New Year!
One thing I really love about @filamentphp.com is how easy it is to test. Since itβs built on Livewire components, writing tests feels much more natural and streamlined. π #Laravel #FilamentPHP #Livewire
π Introducing the new Laravel Catalunya website!
A space for Laravel devs in Catalonia to connect, learn, and grow together.
Check it out and join the community! π
#Laravel #Catalunya #WebDev
laravelcatalunya.online
π Did you know thereβs a growing @laravel.com community in Catalonia?
Join us on Telegram to connect, share knowledge & boost the local PHP scene!
π t.me/+Nm7rMxxF4rA...
#Laravel #Catalonia #PHP #Developers
The highest level of PHPStan!
Ryan Weaver, a Symfony contributor and SymfonyCasts founder/teacher, passed earlier this week after a long and hard fight with a brain tumor. He was a giant in the community β€οΈ
#php #phpc
obits.mlive.com/us/obituarie...
π Laravel tip: Put your app into maintenance mode but let in anyone with the secret key π
php artisan down --with-secret
Perfect for testing without bothering real users.
π laravel.com/docs/12.x/co...
#Laravel #PHP #DevTips
π Laravel Boost is here
Let me show you how to elevate your AI tools and boost your Laravel development.
youtu.be/sUtRcpma8iU
PS: Thank you @ashleyhindle.com π
It's true that the initial implementation is very easy but the full and correct handling is not.
This might be a controversial take, but instead of companies spending money on AI tokens for all their devs, they should pay for specialized IDE licenses like PhpStorm and reserve the tokens for senior devs only.
Thoughts?
I donβt like at all seeing AI take the wheel of code delivered by a dev, instead of the other way around. Is that an improvement?
Laravelβs Soft Deletes let you βdeleteβ records without losing data, just add the SoftDeletes trait to your model and a deleted_at column. Perfect for restoring later! ποΈβ‘οΈβ»οΈ
Docs: laravel.com/docs/12.x/el...
#Laravel #PHP #WebDev
π Weβve launched the official Telegram channel for @laravel.com Catalunya!
Connect, share & learn with Laravel devs across Catalunya.
π² Join: t.me/+Nm7rMxxF4rA...
#Laravel #LaravelPHP #PHP #WebDevelopment #LaravelCommunity #Catalunya #Developers
Acabem de crear una comunitat de Laravel Catalunya! Si et mola Laravel i ets per la zona, pot ser tβinteressa.
t.me/+Nm7rMxxF4rA...
Laravelβs Cache::flexible() uses stale-while-revalidate to keep responses fast β‘ and fresh. Serve now, refresh later. Docs: laravel.com/docs/12.x/ca...
#Laravel #PHP #Caching
Taking the first steps towards building a @laravel.com community in Catalonia.
The goal is to connect passionate devs, share knowledge, and grow together around this amazing framework.
If you're based in Catalonia, stay tuned!
#LaravelCatalonia #LaravelCommunity #WebDevelopment
π In Laravel, you can validate related booleans.
Using boolean + accepted_if, you can require that at least one is true when the other is false. Perfect for cases like "online" vs "in person".
#Laravel #PHP #Validation
After reading an article by @freek.bsky.social and watching a few of @nunomaduro.com streams, Iβve realized itβs "pretty common" to skip the down method in migrations. Might be time to join the trend and simplify mine?
#Laravel #PHP
freek.dev/2900-why-i-d...
π‘ If you're using the Cache facade in Laravel to store data, donβt forget to define how and when it should be cleared π§Ή
Avoid surprises and stale data with strategies like observers, events, or well-defined TTLs.
#LaravelTips #PHP
Using Laravel and have first_name and last_name in separate columns? You can still filter by full name using a subquery with CONCAT. Handy trick when you need flexible name searches!
#Laravel #PHP
π¨ The #[CurrentUser] attribute in Laravel is awesome for accessing the authenticated user directlyβ¦ but watch out! If the route isnβt protected by the auth middleware, it can return null. Donβt get caught off guard!
#Laravel #PHP
Tired of always making the same tweaks every time you create a model, controller, or migration in Laravel? π©
Do it once and forget about it:
php artisan stub:publish
Customize the stubs and let Laravel generate code your way. π οΈβ¨
#Laravel #PHP #DevTips
π‘ When you only need to verify part of the JSON response in a test, use assertJsonFragment.
Itβs great for making your tests more robust and less fragile to payload changes.
#Laravel #PHP #Testing
π‘ Did you know you can add multiple columns after another one in a single call with Laravel?
It's clean, elegant, and keeps your DB tidy.
Thanks Povilas Korop for the tip!
#Laravel #PHP #LaravelTips