#laravel search results

#Laravel Tip Did you know.... tap() = Tweak and Return 🪄 Yes, Laravel's tap() lets you modify an object and return it — perfect for clean, chainable code.

laravelbackpack's tweet image. #Laravel Tip

Did you know.... tap() = Tweak and Return 🪄

Yes, Laravel's tap() lets you modify an object and return it — perfect for clean, chainable code.

#Laravel Tip Did you know... Laravel understands your relations and lets you write much cleaner code👇

laravelbackpack's tweet image. #Laravel Tip

Did you know... Laravel understands your relations and lets you write much cleaner code👇

#Laravel and #PHP Tip Did you know… you can import multiple classes from a single namespace like this👇 Way cleaner, right? 😁

laravelbackpack's tweet image. #Laravel and #PHP Tip

Did you know… you can import multiple classes from a single namespace like this👇

Way cleaner, right? 😁

Huge shoutout to @filamentphp 🎉 Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜 At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

#Laravel Tip 🚀 In Laravel, the `Arr::hasAll` method allows you to check if all the specified keys are present in an array. It supports nested keys using dot notation and returns true only if every key exists.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel, the `Arr::hasAll` method allows you to check if all the specified keys are present in an array. It supports nested keys using dot notation and returns true only if every key exists.

#Laravel Tip Date filtering is easy if you know these methods:

laravelbackpack's tweet image. #Laravel Tip

Date filtering is easy if you know these methods:

#Laravel lazy() vs get() Did you know.... You can stream large datasets from the DB using lazy() — way more memory-efficient than get().

laravelbackpack's tweet image. #Laravel lazy() vs get()

Did you know.... You can stream large datasets from the DB using lazy() — way more memory-efficient than get().

For all the #Laravel devs out there using Windows 💻 composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅

JaiveerChavda's tweet image. For all the #Laravel devs out there using Windows 💻

composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅

Laravel Tip 💡: Detect User Language Laravel uses Symfony's HttpFoundation component, which comes with some nice goodies. If you are working with localization and need to detect the user's preferred language, you can just call "getPreferredLanguage" 🚀 #laravel

OussamaMater's tweet image. Laravel Tip 💡: Detect User Language

Laravel uses Symfony's HttpFoundation component, which comes with some nice goodies. If you are working with localization and need to detect the user's preferred language, you can just call "getPreferredLanguage" 🚀

#laravel

#Laravel Tip 🚀 In Laravel 12, you can automatically cast Eloquent attributes to HTML strings using `AsHtmlString::class`.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel 12, you can automatically cast Eloquent attributes to HTML strings using `AsHtmlString::class`.

#Laravel Tip 🚀 In Laravel 12, you can use the `toResource()` helper directly on your Eloquent models. Just fetch your data, and instantly convert it into a clean, structured API resource.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel 12, you can use the `toResource()` helper directly on your Eloquent models. Just fetch your data, and instantly convert it into a clean, structured API resource.

Option B: #Laravel Tips 💡 1️⃣ Dynamic wheres aren't just cute - they’re super handy for quick lookups without repeating ->where()->where() chains. Perfect for things like login, lookups, or finding by composite keys.

Akr4mKhan's tweet image. Option B: #Laravel Tips 💡

1️⃣ Dynamic wheres aren't just cute - they’re super handy for quick lookups without repeating ->where()->where() chains. Perfect for things like login, lookups, or finding by composite keys.

Been a while since I touched Laravel 💔 I told myself I’d only use it if a job requires me to lol 😂 Well… the job did 😅 Faced some wild errors setting it up on Arch, but finally got it running 💪🔥 #Laravel #ArchLinux #DevLife

dy_coder_'s tweet image. Been a while since I touched Laravel 💔
I told myself I’d only use it if a job requires me to lol 😂
Well… the job did 😅
Faced some wild errors setting it up on Arch, but finally got it running 💪🔥
#Laravel #ArchLinux #DevLife

#Laravel Tip Eager load relationships to avoid N+1 query issues👇

laravelbackpack's tweet image. #Laravel Tip

Eager load relationships to avoid N+1 query issues👇

Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740! Finally met the legend behind Laravel Idea — @Adelf32 👏 Great vibes, great devs. Can’t wait for the next one! (Also got a little gift 🎁)

sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)
sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)
sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)
sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)

Option B: #Laravel Tips 💡 1️⃣ Using whereYear() feels neat, but it disables your index and forces a full table scan, not ideal for large datasets. Instead, use date ranges to keep queries fast and index-friendly.

Akr4mKhan's tweet image. Option B: #Laravel Tips 💡

1️⃣ Using whereYear() feels neat, but it disables your index and forces a full table scan, not ideal for large datasets. Instead, use date ranges to keep queries fast and index-friendly.

In Custom Fields V2 beta, you can now extend it with your own field types and even override the built-ins. Made file upload configuration SO much cleaner. It’s pretty flexible. #Laravel #Filament


#Laravel #PHP Ever imported multiple classes from one namespace like this? 👇 Is it a sleek move or a messy mistake? Drop your thoughts in the comments! 👇

laravelbackpack's tweet image. #Laravel #PHP

Ever imported multiple classes from one namespace like this? 👇

Is it a sleek move or a messy mistake? Drop your thoughts in the comments! 👇

Day 26/100 — Launch Day After 25 days of building, 100DaysOfCode·AI Coach is now live. Built with Laravel + Livewire, it helps developers plan, log, and stay consistent during the #100DaysOfCode challenge. → 100days.jiordiviera.me Repo: github.com/jiordiviera/10… #Laravel #AI

jiordiviera's tweet image. Day 26/100 — Launch Day

After 25 days of building, 100DaysOfCode·AI Coach is now live.
Built with Laravel + Livewire, it helps developers plan, log, and stay consistent during the #100DaysOfCode challenge.

→ 100days.jiordiviera.me
Repo: github.com/jiordiviera/10…

#Laravel #AI…

🚀 Just dropped a quick demo of my new @filamentphp kanban plugin! Showcasing the basic workflow and how it can level up your Filament projects ⚡️ 🎥 Watch here → youtube.com/watch?v=lqVxcO… #FilamentPHP #Laravel #PHP #OpenSource #DevTools


🚀 AFUP Day 2026 Lille 🗓 May 22, 2026 🇫🇷 Lille, France ❤️ Retweet to support! #php #laravel #symfony #tech #it #conference dev.events/conferences/af…


🚀 phpday 2026 🗓 May 14, 2026 🇮🇹 Verona, Italy ❤️ Retweet to support! #php #laravel #symfony #tech #it #conference dev.events/conferences/ph…


🚀 Laravel v12.7.0 がリリースされました。 📦 種別: minor #GitHub #Release #Laravel


Descubrí un hack en #WordPress que transforma tu sitio web estándar en una aplicación web progresiva (PWA) en menos de 10 minutos 🚀. ¡Imagina las posibilidades! Velocidad, offline capabilities, y mucho más. ¿Quieres saber cómo? #Laravel #PHP #TechHack #Innovación 💡


Zillow is hiring a Senior Software Development Engineer - Laravel/PHP + React 📍 Mexico - Remote 💰 Competitive Salary 🏢 Full-Time #itjobsfromhome #react #laravel #fullstack #backend #frontend itjobsfromhome.com/jobs/senior-so…


#Laravel Service Providers — Simplified Manage app dependencies easily Register + bootstrap services Keep your code organized Load only when needed = faster app 💡 Pro Tip: Know the difference — register() binds, boot() runs logic after all bindings.

alloyking_1's tweet image. #Laravel Service Providers — Simplified 

Manage app dependencies easily

Register + bootstrap services

Keep your code organized

Load only when needed = faster app 

💡 Pro Tip: Know the difference — register() binds, boot() runs logic after all bindings.

Been a while since I touched Laravel 💔 I told myself I’d only use it if a job requires me to lol 😂 Well… the job did 😅 Faced some wild errors setting it up on Arch, but finally got it running 💪🔥 #Laravel #ArchLinux #DevLife

dy_coder_'s tweet image. Been a while since I touched Laravel 💔
I told myself I’d only use it if a job requires me to lol 😂
Well… the job did 😅
Faced some wild errors setting it up on Arch, but finally got it running 💪🔥
#Laravel #ArchLinux #DevLife

Oh wow, it took me like ~30 mins to create a basic Shopify app using Laravel and Polaris web-components in Cursor. Still a lot of things to fine-tune, but basic installation flow works great. Happy to return to classic blade views 🔥 #laravel #shopify


🧠 Your business deserves more than code, it deserves smart systems. Let’s build something that runs faster, scales smarter, and looks better. #SoftwareDevelopment #Nextjs #Laravel #Aldotek


🔥✨🚀✅ Astuce #Laravel : prévisualiser vos mails facilement. Laravel permet de prévisualiser n’importe quel e-mail directement dans le navigateur, sans l’envoyer réellement.🚀🚀🚀 Il suffit de retourner une instance d’un Mailable depuis une route, comme ceci :

larafrique's tweet image. 🔥✨🚀✅ Astuce #Laravel : prévisualiser vos mails facilement.
Laravel permet de prévisualiser n’importe quel e-mail directement dans le navigateur, sans l’envoyer réellement.🚀🚀🚀
Il suffit de retourner une instance d’un Mailable depuis une route, comme ceci :
larafrique's tweet image. 🔥✨🚀✅ Astuce #Laravel : prévisualiser vos mails facilement.
Laravel permet de prévisualiser n’importe quel e-mail directement dans le navigateur, sans l’envoyer réellement.🚀🚀🚀
Il suffit de retourner une instance d’un Mailable depuis une route, comme ceci :

🎉 3 years of maintaining Laravel Tablar! Now with 15,000+ downloads and 300+ GitHub stars ⭐ Just added support for Tabler v1.4.0 — keeping it fresh for all Laravel devs! Huge thanks to everyone who’s used or supported the project 🙏 #Laravel #PHP #OpenSource #Tabler #tablar

takiele's tweet image. 🎉 3 years of maintaining Laravel Tablar!
Now with 15,000+ downloads and 300+ GitHub stars ⭐
Just added support for Tabler v1.4.0 — keeping it fresh for all Laravel devs!

Huge thanks to everyone who’s used or supported the project 🙏
#Laravel #PHP #OpenSource #Tabler #tablar

Laravel 12 now routes your jobs automatically — no downtime, now. Introducing: Queue Failover Driver ✅ Multi-driver fallback ✅ Seamless recovery ✅ Bulletproof background jobs #Laravel #PHP #WebDev #Queues #SaaS #BackendDev #Laravel12 #CleanCode #Jobs medium.com/p/laravels-que…


I hate rewriting code just to add an API. So I built a base controller in #Laravel that returns Inertia::view() for web requests and JSON for /api or JSON requests. One controller, two outputs. Thinking of turning it into a boilerplate.

alloyking_1's tweet image. I hate rewriting code just to add an API.
So I built a base controller in #Laravel that returns 
Inertia::view()  for web requests and JSON for /api or JSON requests.

One controller, two outputs.
Thinking of turning it into a boilerplate.

🖥 Whether it’s a startup MVP or an enterprise app, we build it like it’s our own. #Laravel #Nextjs #Nodejs #Aldotek


#Laravel Tip Did you know... filled() is smarter than has() — it also checks that the value isn't null or empty.

laravelbackpack's tweet image. #Laravel Tip

Did you know... filled() is smarter than has() — it also checks that the value isn't null or empty.

Huge shoutout to @filamentphp 🎉 Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜 At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

#Laravel Tip 🚀 In Laravel, the `Arr::hasAll` method allows you to check if all the specified keys are present in an array. It supports nested keys using dot notation and returns true only if every key exists.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel, the `Arr::hasAll` method allows you to check if all the specified keys are present in an array. It supports nested keys using dot notation and returns true only if every key exists.

#Laravel Tip Did you know.... tap() = Tweak and Return 🪄 Yes, Laravel's tap() lets you modify an object and return it — perfect for clean, chainable code.

laravelbackpack's tweet image. #Laravel Tip

Did you know.... tap() = Tweak and Return 🪄

Yes, Laravel's tap() lets you modify an object and return it — perfect for clean, chainable code.

#Laravel lazy() vs get() Did you know.... You can stream large datasets from the DB using lazy() — way more memory-efficient than get().

laravelbackpack's tweet image. #Laravel lazy() vs get()

Did you know.... You can stream large datasets from the DB using lazy() — way more memory-efficient than get().

#Laravel Tip Did you know... Laravel understands your relations and lets you write much cleaner code👇

laravelbackpack's tweet image. #Laravel Tip

Did you know... Laravel understands your relations and lets you write much cleaner code👇

Option B: #Laravel Tips 💡 1️⃣ When testing time-sensitive features, don’t manually hack Carbon::setTestNow(). Laravel’s built-in travel, travelTo, and freezeTime methods make tests cleaner, more readable, and auto-reset back to the present.

Akr4mKhan's tweet image. Option B: #Laravel Tips 💡

1️⃣ When testing time-sensitive features, don’t manually hack Carbon::setTestNow(). Laravel’s built-in travel, travelTo, and freezeTime methods make tests cleaner, more readable, and auto-reset back to the present.

🚨 Big News Coming! 🚨 Something huge is brewing for #LaraconIN 🇮🇳 Stay tuned for the official announcement 👀 You don’t want to miss this at 5 pm, 26th Sep 2025! #Laracon #Laravel

LaraconIN's tweet image. 🚨 Big News Coming! 🚨

Something huge is brewing for #LaraconIN 🇮🇳

Stay tuned for the official announcement 👀
You don’t want to miss this at 5 pm, 26th Sep 2025!

#Laracon #Laravel

#Laravel Tip 🚀 The `Str::mask` method hides part of a string by replacing it with a repeated character, making it useful for covering things like emails or phone numbers.

iamgurmandeep's tweet image. #Laravel Tip 🚀

The `Str::mask` method hides part of a string by replacing it with a repeated character, making it useful for covering things like emails or phone numbers.

#Laravel Tip 🚀 In Laravel 12, you can automatically cast Eloquent attributes to HTML strings using `AsHtmlString::class`.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel 12, you can automatically cast Eloquent attributes to HTML strings using `AsHtmlString::class`.

#Laravel Tip 🚀 In Laravel 12, you can use the `toResource()` helper directly on your Eloquent models. Just fetch your data, and instantly convert it into a clean, structured API resource.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel 12, you can use the `toResource()` helper directly on your Eloquent models. Just fetch your data, and instantly convert it into a clean, structured API resource.

Multi-language #laravel apps sound great… until they turn into a sloppy mess. Fast-forward 3 months after this convo… - The app is a half-translated soup. - Customers are confused. - The brand looks sloppy. - Everyone’s frustrated. But... what if there was a better way?! 🧵👇🏻

tabacitu's tweet image. Multi-language #laravel apps sound great… until they turn into a sloppy mess.

Fast-forward 3 months after this convo…
- The app is a half-translated soup.
- Customers are confused.
- The brand looks sloppy.
- Everyone’s frustrated.

But... what if there was a better way?! 🧵👇🏻

Laravel Tip 💡: Detect User Language Laravel uses Symfony's HttpFoundation component, which comes with some nice goodies. If you are working with localization and need to detect the user's preferred language, you can just call "getPreferredLanguage" 🚀 #laravel

OussamaMater's tweet image. Laravel Tip 💡: Detect User Language

Laravel uses Symfony's HttpFoundation component, which comes with some nice goodies. If you are working with localization and need to detect the user's preferred language, you can just call "getPreferredLanguage" 🚀

#laravel

What's stopping you from coding like this? Man, I love home. #php #laravel

chasecmiller's tweet image. What's stopping you from coding like this? Man, I love home.

#php #laravel

#laravel tip. I used this in a Filament action. Soo much cleaner 🔥🔥🔥

sandersjj's tweet image. #laravel tip. I used this in a Filament action. 
Soo much cleaner 🔥🔥🔥

#Laravel Tip Date filtering is easy if you know these methods:

laravelbackpack's tweet image. #Laravel Tip

Date filtering is easy if you know these methods:

🎉 India’s biggest #Laravel conference is back with a Special Guest 🎉 Mark your calendars now for #LaraconIN 2026! 🎉 📅Dates: 31 Jan - 1 Feb, 2026 📍City: Ahmedabad, India Join the waitlist today for early ticket access: forms.gle/YUTevD19gqCazX… #Laracon @laravelphp

LaraconIN's tweet image. 🎉 India’s biggest #Laravel conference is back with a Special Guest 🎉

Mark your calendars now for #LaraconIN 2026! 🎉

📅Dates: 31 Jan - 1 Feb, 2026
📍City: Ahmedabad, India

Join the waitlist today for early ticket access: forms.gle/YUTevD19gqCazX…

#Laracon @laravelphp

#Laravel Tip Don't let database queries slow you down. Use Laravel's cache facade to cache data temporarily, reducing database queries.

laravelbackpack's tweet image. #Laravel Tip

Don't let database queries slow you down. Use Laravel's cache facade to cache data temporarily, reducing database queries.

Option B: #Laravel Tips 💡 1️⃣ Dynamic wheres aren't just cute - they’re super handy for quick lookups without repeating ->where()->where() chains. Perfect for things like login, lookups, or finding by composite keys.

Akr4mKhan's tweet image. Option B: #Laravel Tips 💡

1️⃣ Dynamic wheres aren't just cute - they’re super handy for quick lookups without repeating ->where()->where() chains. Perfect for things like login, lookups, or finding by composite keys.

Loading...

Something went wrong.


Something went wrong.


United States Trends