#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.

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

Congrats @laravelphp on launching Laravel VPS, powered by #DigitalOcean. ✨ #Laravel has leveraged DigitalOcean’s infrastructure to achieve enterprise-scale while maintaining a cost effective solution and simplifying the end-user experience. 🔗 do.co/4nBSs5k


#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 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.

#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 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 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? 😁

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…

#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👇

4️⃣ Clean Code Series: Variables📒 🧑💻 ☑️ Use searchable names (part 2) 🐘 #PHP #Laravel #Symfony

rajkbnp's tweet image. 4️⃣ Clean Code Series: Variables📒 🧑💻

☑️ Use searchable names (part 2)

🐘 #PHP #Laravel #Symfony

Option B: #Laravel Tips 💡 1️⃣ You can use Blade to render views into plain HTML strings anywhere, not just in controllers. Perfect for building dynamic emails, logs, or shell scripts, just like Laravel Envoy does. Cleaner, reusable, and 100% Blade-powered.

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

1️⃣ You can use Blade to render views into plain HTML strings anywhere, not just in controllers. Perfect for building dynamic emails, logs, or shell scripts, just like Laravel Envoy does. Cleaner, reusable, and 100% Blade-powered.

#Laravel 12 + shadcn_vue — I’m both impressed and frustrated 😅 Coming from Laravel 10, there’s definitely a learning curve. A lot has changed — new structure, new stack, and that whole shadcn_vue setup. I can already see how ...

alloyking_1's tweet image. #Laravel 12 + shadcn_vue — I’m both impressed and frustrated 😅
Coming from Laravel 10, there’s definitely a learning curve.

 A lot has changed — new structure, new stack, and that whole shadcn_vue setup.

I can already see how ...

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

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.

#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! 👇

#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 If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:

laravelbackpack's tweet image. #Laravel Tip

If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:

4️⃣ Clean Code Series: Variables📒 🧑💻 ☑️ Use searchable names (part 2) 🐘 #PHP #Laravel #Symfony

rajkbnp's tweet image. 4️⃣ Clean Code Series: Variables📒 🧑💻

☑️ Use searchable names (part 2)

🐘 #PHP #Laravel #Symfony

Discovered again how powerful redirect()->with() can be in Laravel. It’s like saying ‘go there, but don’t forget the message’. Little details that make code human-friendly. #Laravel #CodeTideHQ

rcelanodev's tweet image. Discovered again how powerful redirect()->with() can be in Laravel.
It’s like saying ‘go there, but don’t forget the message’.
Little details that make code human-friendly.
#Laravel #CodeTideHQ

🚀 JetBrains’ 2025 PHP report is out. AI didn’t kill PHP — it made it smarter. Laravel leads, Pest grows, PhpStorm dominates. #PHP #Laravel #JetBrains #AItools #WebDev #CleanCode medium.com/p/ai-didnt-kil…


Part of me wants to strip it all down — Blade + HTMX + Alpine or Vanilla JS. Keep it simple. Keep it fun. For now, I’ll keep pushing through the chaos. But the more Laravel evolves, the more I crave simplicity. #Laravel #BuildInPublic #WebDevelopment #IndieHackers


#Laravel 12 + shadcn_vue — I’m both impressed and frustrated 😅 Coming from Laravel 10, there’s definitely a learning curve. A lot has changed — new structure, new stack, and that whole shadcn_vue setup. I can already see how ...

alloyking_1's tweet image. #Laravel 12 + shadcn_vue — I’m both impressed and frustrated 😅
Coming from Laravel 10, there’s definitely a learning curve.

 A lot has changed — new structure, new stack, and that whole shadcn_vue setup.

I can already see how ...

Next.js middleware + Laravel API = clean and fast authentication flow. Who else prefers hybrid stacks? #NextJS #Laravel


Looking for a new challenge? 🚀 Madrivo is hiring a Full-Stack Developer! Join a dynamic team and work with innovative tech. Apply now and take the next step in your career: larajobs.com/job/3736 #laravel


🔴 Personalizar columnas en la selección en Relaciones mórficas en #Laravel 🔴 Te muestro la configuración para que puedas personalizar las columnas en una relación mórfica. youtu.be/9ATzLGrvXyk

LibreDesarrollo's tweet image. 🔴 Personalizar columnas en la selección en Relaciones mórficas en #Laravel

🔴 Te muestro la configuración para que puedas personalizar las columnas en una relación mórfica.

youtu.be/9ATzLGrvXyk

Option B: #Laravel Tips 💡 1️⃣ You can use Blade to render views into plain HTML strings anywhere, not just in controllers. Perfect for building dynamic emails, logs, or shell scripts, just like Laravel Envoy does. Cleaner, reusable, and 100% Blade-powered.

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

1️⃣ You can use Blade to render views into plain HTML strings anywhere, not just in controllers. Perfect for building dynamic emails, logs, or shell scripts, just like Laravel Envoy does. Cleaner, reusable, and 100% Blade-powered.

Most devs only use Laravel casting for booleans & dates. But, Laravel 12 lets you do so much more: - Currency - Encryption - Geo - Value objects Level up your Eloquent models, read bmehul.com/articles/advan… #Laravel #Laravel12 #PHP #Coding #WebDevelopment #Eloquent #CleanCode


Explored some other tech stack which i havent explored, vue & laravel, made a crud, auth backend with laravel to get its basic level understanding Liked vue, not a big fan of laravel as of now #vue #laravel


DEVS: Failover Queue Driver in #Laravel 12.34 / The #Laravel team released version 12.34.0 this week, introducing a failover queue driver, full-text database search improvements in #Laravel Scout, deferring an HTTP client batch, and more. The post... ppub.link/zb4et

ExtlyNews's tweet image. DEVS: Failover Queue Driver in #Laravel 12.34 / The #Laravel team released version 12.34.0 this week, introducing a failover queue driver, full-text database search improvements in #Laravel Scout, deferring an HTTP client batch, and more. The post... ppub.link/zb4et

What You Need to Know About Craft 6 on Laravel buff.ly/e9jGEPH #laravel #craftcms

craftquest_io's tweet image. What You Need to Know About Craft 6 on Laravel buff.ly/e9jGEPH #laravel #craftcms

#Claude Code #Laravel Boost for the win 🚀 Ask it to create Postman Collections for you every time you update or create API routes. #PHP #Coding


👋 I’m currently open to new Software Developer opportunities! Skilled in Laravel (PHP), Flutter, and API integrations I love turning ideas into clean, functional, and scalable apps. DM or tag someone hiring #OpenToWork #SoftwareDeveloper #Laravel #Flutter #DevJobs


What I thought was a 1-day task is now on day 2… and counting Spent 30 mins trying to figure out what Laravel Wayfinder does — refused to read first Found this: laracasts.com/series/jeffrey… (great read) Didn’t even use it Progress is progress. #Laravel #BuildInPublic

alloyking_1's tweet image. What I thought was a 1-day task is now on day 2… and counting 

Spent 30 mins trying to figure out what Laravel Wayfinder does — refused to read first 

Found this: laracasts.com/series/jeffrey… (great read)
Didn’t even use it 

Progress is progress.  
#Laravel #BuildInPublic

プログラマ募集 【 PHP (Laravel) 】 施設予約管理システム開発 startlightstaff.com/anken/22013237 詳細設計~開発 既存システムの機能追加をご担当 一人称で詳細設計から開発まで対応可能な方 ※基本リモート(環境構築で品川or渋谷に出社) 単価~600,000円/月(税抜) 最寄り駅 品川 渋谷 #php #Laravel


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

🚨 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 🚀 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.

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…

🎉 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 🚀 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.

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?! 🧵👇🏻

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 🔥🔥🔥

4️⃣ Clean Code Series: Variables📒 🧑💻 ☑️ Use searchable names (part 2) 🐘 #PHP #Laravel #Symfony

rajkbnp's tweet image. 4️⃣ Clean Code Series: Variables📒 🧑💻

☑️ Use searchable names (part 2)

🐘 #PHP #Laravel #Symfony

#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.

#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 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 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().

⏳ Tick-tock! The #LaraconIN reveal is almost here. Stay tuned - details coming soon 👀 #Laravel #Laracon #LaraconIndia

LaraconIN's tweet image. ⏳ Tick-tock! The #LaraconIN reveal is almost here.

Stay tuned - details coming soon 👀

#Laravel #Laracon #LaraconIndia

#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`.

Been testing out @statamic Alpha tonight New Statamic CP = 👌👌👌👌👌 Who doesn’t love this?! #Statamic #CMS #laravel

camitzryden's tweet image. Been testing out @statamic Alpha tonight

New Statamic CP = 👌👌👌👌👌

Who doesn’t love this?! 

#Statamic #CMS #laravel

#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.

Loading...

Something went wrong.


Something went wrong.


United States Trends