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

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 #PHP Do you map or loop? 👇 Functional elegance or just fancy syntax? What do you think👇

laravelbackpack's tweet image. #Laravel #PHP

Do you map or loop? 👇

Functional elegance or just fancy syntax? What do you think👇

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

#Laravel #PHP Do you prefer sending mail inline or using a Mailable class? 👇

laravelbackpack's tweet image. #Laravel #PHP

Do you prefer sending mail inline or using a Mailable class? 👇

#Laravel Tip Load data faster when the targeted value is an integer. Use 𝘄𝗵𝗲𝗿𝗲𝗜𝗻𝘁𝗲𝗴𝗲𝗿𝗜𝗻𝗥𝗮𝘄() instead of the 𝘄𝗵𝗲𝗿𝗲𝗜𝗻() method to load data faster when the targeted value is an integer.

laravelbackpack's tweet image. #Laravel Tip
Load data faster when the targeted value is an integer. Use 𝘄𝗵𝗲𝗿𝗲𝗜𝗻𝘁𝗲𝗴𝗲𝗿𝗜𝗻𝗥𝗮𝘄() instead of the 𝘄𝗵𝗲𝗿𝗲𝗜𝗻() method to load data faster when the targeted value is an integer.

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 Tip Did you know... You can fetch a single column directly with value() — simpler & faster than first().

laravelbackpack's tweet image. #Laravel Tip

Did you know... You can fetch a single column directly with value() — simpler & faster than first().

#Laravel Tip Did you know about… `whereAny()` method that can search multiple columns using OR logic in a cleaner way!👇

laravelbackpack's tweet image. #Laravel Tip

Did you know about… `whereAny()` method that can search multiple columns using OR logic in a cleaner way!👇

One thing I’ve learned as a developer: Don’t use the “popular” tool, use the right one. My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner. Growth is realizing efficiency > hype. #WebDev #PHP #Laravel

joydev_1's tweet image. One thing I’ve learned as a developer:
Don’t use the “popular” tool, use the right one.
My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner.
Growth is realizing efficiency > hype.
#WebDev #PHP #Laravel

This is what 100% #Laravel test coverage looks like.

MKinyua53's tweet image. This is what 100% #Laravel test coverage looks like.

PHP is a fun and awesome language BTW. #PHP #Laravel

CodeSushil's tweet image. PHP is a fun and awesome language BTW.

#PHP #Laravel

#Laravel #PHP Do you use arrow functions everywhere? 👇 Cleaner or harder to read? 👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use arrow functions everywhere? 👇

Cleaner or harder to read? 👇

Saturday morning project: Built a complete job application form with FilaForms - a plugin for FilamentPHP. Time spent: 1 minute Coffee consumed: Still on first cup #Laravel #Filament #FormBuilder #PublicForms


7️⃣ Clean Code Series: Functions📒🧑💻 ☑️ Don't write to global functions 💡Polluting globals is a bad practice because you could clash with another library and the user of your API would be none-the-wiser until they get an exception in production. 🐘#PHP #Laravel #Symfony

rajkbnp's tweet image. 7️⃣ Clean Code Series: Functions📒🧑💻

☑️ Don't write to global functions

💡Polluting globals is a bad practice because you could clash with another library and the user of your API would be none-the-wiser until they get an exception in production.

🐘#PHP #Laravel #Symfony

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

7️⃣ Clean Code Series: Functions📒🧑💻 ☑️ Don't write to global functions 💡Polluting globals is a bad practice because you could clash with another library and the user of your API would be none-the-wiser until they get an exception in production. 🐘#PHP #Laravel #Symfony

rajkbnp's tweet image. 7️⃣ Clean Code Series: Functions📒🧑💻

☑️ Don't write to global functions

💡Polluting globals is a bad practice because you could clash with another library and the user of your API would be none-the-wiser until they get an exception in production.

🐘#PHP #Laravel #Symfony

Today, completed the financial goal form, which includes fields like goal name, investment, annual return, etc. , created its #backend API (Create , Read and Update ) in #Laravel and the #frontend in React.js. I’ll try to make this project live by the end of the month.


Laravel got its own AI agent framework upgrades: ✅ Stateless ask() & respond() ✅ Cache UI for real-time debugging ✅ Prompt Manager that feels like Blade ✅ Modular capabilities via MCP #Laravel #AI #PHP #DevTools #PromptEngineering #LarAgent #WebDev medium.com/p/laravel-gets…


This is what 100% #Laravel test coverage looks like.

MKinyua53's tweet image. This is what 100% #Laravel test coverage looks like.

Next version of Larastan will recognize unsigned columns. It works for both migrations and schema dumps! #php #phpstan #laravel

can__vural's tweet image. Next version of Larastan will recognize unsigned columns. It works for both migrations and schema dumps!

#php #phpstan #laravel
can__vural's tweet image. Next version of Larastan will recognize unsigned columns. It works for both migrations and schema dumps!

#php #phpstan #laravel

Day 2 of posting - Urania. Dashboard is getting shape. Users can now create projects - API keys are tied to a project. Powered by Laravel and PHP #PHP #Laravel #backenddevloper #CRUD

obioma_onwuka's tweet image. Day 2 of posting - Urania.
Dashboard is getting shape. Users can now create projects - API keys are tied to a project.
Powered by Laravel and PHP

#PHP #Laravel #backenddevloper #CRUD
obioma_onwuka's tweet image. Day 2 of posting - Urania.
Dashboard is getting shape. Users can now create projects - API keys are tied to a project.
Powered by Laravel and PHP

#PHP #Laravel #backenddevloper #CRUD
obioma_onwuka's tweet image. Day 2 of posting - Urania.
Dashboard is getting shape. Users can now create projects - API keys are tied to a project.
Powered by Laravel and PHP

#PHP #Laravel #backenddevloper #CRUD

The Birth of URANIA - A Dev’s Frustration Turned Microservice Since paid gigs have been scarce lately, I decided to get my hands busy instead of waiting on “clients that will get back to me.” 😅 So, I went back to solving my own developer pain points.

obioma_onwuka's tweet image. The Birth of URANIA - A Dev’s Frustration Turned Microservice

Since paid gigs have been scarce lately, I decided to get my hands busy instead of waiting on “clients that will get back to me.” 😅
So, I went back to solving my own developer pain points.
obioma_onwuka's tweet image. The Birth of URANIA - A Dev’s Frustration Turned Microservice

Since paid gigs have been scarce lately, I decided to get my hands busy instead of waiting on “clients that will get back to me.” 😅
So, I went back to solving my own developer pain points.


Own your code. True flexibility. Community-driven. This is how packages should work in 2025. Would you use this? Let's discuss 👇 #Laravel


🚀 New job alert! ScreenPal is hiring a Senior Laravel Developer & Architect for their Video Technology team. If you're skilled in Laravel and love working with video tech, apply now! larajobs.com/job/3738 #laravel


Looking for a new challenge? 🧑‍💻 Quility is hiring a Senior PHP Laravel Developer! Work on backend API development for life insurance sales, agent management, and lead generation. Join us to shape the future of insurance tech. Apply now: larajobs.com/job/3739 #laravel


Finished implementing a server-side flow for sending events to #Umami analytics from #Laravel 🚀 This setup tracks requests to endpoints that redirect users away from the site - like my random image API and `coz .jp`’s shortened URL endpoints. #buildinpublic #development #webdev


Want to take full control of HTTP requests in your Laravel app? Learn how to implement middleware effectively! 💻 ✅ Step-by-step guide ✅ Example code snippets ✅ Best practices for security and performance Check it out here 👉 codeboxr.com/how-to-impleme… #Laravel #PHP #codeboxr


Looking for a new challenge? 💼 Pimono Software Design L.L.C is hiring a Senior Full Stack Laravel Developer! Join their amazing team and work on cool projects. Apply here: larajobs.com/job/3745 #laravel


Colombia's online store; deals with beauty cosmetics products. operating online using #Bagisto, an #ecommerce platform built on #laravel angelshopcol.com

BagistoShop's tweet image. Colombia's online store; deals with beauty cosmetics products. operating online using #Bagisto, an #ecommerce platform built on #laravel

angelshopcol.com

#DailyResource Article by Mateus Guimarães Optimizing PHP applications for performance Read now at bestoflaravel.com/go/3480 #php #laravel #webdev #javascript #tech #resources #developers

BestOfLaravel's tweet image. #DailyResource

Article by Mateus Guimarães
Optimizing PHP applications for performance

Read now at
bestoflaravel.com/go/3480

#php #laravel #webdev #javascript #tech #resources #developers

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

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 😅

PHP is a fun and awesome language BTW. #PHP #Laravel

CodeSushil's tweet image. PHP is a fun and awesome language BTW.

#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

This is what 100% #Laravel test coverage looks like.

MKinyua53's tweet image. This is what 100% #Laravel test coverage looks like.

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

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

Option B: #Laravel Tips 💡 1️⃣ DB::afterRollback() lets you react cleanly when a transaction fails. Perfect for releasing locks, clearing caches, or reverting side effects without messy try/catch blocks.

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

1️⃣ DB::afterRollback() lets you react cleanly when a transaction fails. Perfect for releasing locks, clearing caches, or reverting side effects without messy try/catch blocks.

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

#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 #PHP Do you map or loop? 👇 Functional elegance or just fancy syntax? What do you think👇

laravelbackpack's tweet image. #Laravel #PHP

Do you map or loop? 👇

Functional elegance or just fancy syntax? What do you think👇

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

One thing I’ve learned as a developer: Don’t use the “popular” tool, use the right one. My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner. Growth is realizing efficiency > hype. #WebDev #PHP #Laravel

joydev_1's tweet image. One thing I’ve learned as a developer:
Don’t use the “popular” tool, use the right one.
My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner.
Growth is realizing efficiency > hype.
#WebDev #PHP #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.

Loading...

Something went wrong.


Something went wrong.


United States Trends