#laravel search results
#Laravel and #PHP Tip Did you know… you can import multiple classes from a single namespace like this👇 Way cleaner, right? 😁
Laravel Tip 💡: Wrap a Pipeline in a DB Transaction Elegantly If you are using Laravel pipelines and wrapping the whole thing in a DB transaction, since Laravel v12.22 you can simplify your code by just calling "withinTransaction()" on the pipeline 🚀 #laravel
#Laravel Tip If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:
For all the #Laravel devs out there using Windows 💻 composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅
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 #PHP Do you use ?? or stick with isset() ? Clean shortcut or confusing syntax? What do you think...👇
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 Did you know about… `whereAny()` method that can search multiple columns using OR logic in a cleaner way!👇
Built a template selection modal for @FilaForms with: → Real-time search filtering → Alpine.js reactivity → Visual selection feedback → Debounced search performance Clean UX without overengineering. #Laravel #AlpineJS #FilaForms
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
Bonjour 👋 Pipe operator, closures dans les constantes, NoDiscard ... PHP 8.5 débarque en novembre ! 🚀 @LaravelJutsu nous propose une rétrospective de ces nouvelles fonctionnalités qui vont changer votre façon de coder en #PHP ! 👉 laravel-france.com/posts/les-nouv… #laravel
I just built a simple Lawyer-Client Management App using PHP (Laravel) ⚖️ Clients upload their cases → Lawyers pick and handle them → Clerks review and approve. A smooth workflow from problem to solution. #Laravel #WebDev #PHP
I made up my mind to divert to backend development around august and I have been taking some laravel course for backend development Currently, i am building a help desk support system (backend) with laravel php Day 1: Auth logic set up #backenddevloper #Laravel
Dedupler es un paquete Laravel que previene archivos duplicados usando hashing SHA-1 y ofrece una API polimórfica para gestionar adjuntos. #Laravel #Desarrollo #Dedupler - erdisma.short.gy/9V1eZI
Spent hours manually updating @laravelphp apps? 😅 @rectorphp can automate: ✅ Version upgrades ✅ Type hints & strict types ✅ Code quality improvements ✅ Removing debug code Checkout how we use it at @jumptwenty4 :t.ly/TO8Vc #Laravel #PHP
DEVS: MongoDB Transactions in #Laravel / Learn how to use MongoDB’s multi-document ACID transactions in #Laravel to build fast, flexible, and reliable applications. This guide covers setup, real-world examples, best practices, and when to use... ppub.link/7186j
❤️ One of the things that makes you fall in love with Laravel is what? Starting from Laravel version 12.28, a new feature has been added that truly captures the “Laravel spirit” ✨ Now you can attach your policy directly to the model using a simple Attribute 😳 #Laravel #Milwad
DEVS: Concurrency Control in #Laravel 12.36, Inertia View Transitions / The #Laravel team released version 12.36.0 this week, adding concurrency control for HTTP pool and batch methods, introducing two Eloquent collection methods, and more. The post... ppub.link/wn7x3
🚀 New Job Alert! Campaign Nucleus is hiring a Full Stack Engineer! We're looking for a Laravel developer with strong Vue.js skills to help build our custom SaaS platform. Full-time, remote role with great benefits. Apply now! larajobs.com/job/3741 #laravel
Laravel Filament is a powerful admin panel builder designed for Laravel applications. It simplifies creating dashboards and CRUD. Read More, iflair.com/revolutionize-… #Laravel #LaravelFilament #WebDevelopment #iflair
Want a web application that can handle your success? That's the power of Laravel. It's built to scale smoothly, so your tech never holds your business back. Ready to build an application that grows with you? Learn more! linkedin.com/pulse/benefits… #laravel #webdevelopment…
Building VSCode extensions isn’t my thing…but I wanted a smoother way to jump between projects. Inspired by the old Panic Coda dashboard. 👉 VSCode: marketplace.visualstudio.com/items?itemName… 👉 Cursor: open-vsx.org/extension/dean… Hopefully useful to others too! #Laravel #Livewire #VSCode #Cursorai
I’ve listened to 5× more podcasts, and not one irrelevant episode in the last 3 months 🎧 Daily summaries tell me exactly what I SHOULD be listening to! 🎉 Launching soon 👉 podcast-insider.com #Laravel #SaaS #Podcast #ProductivityHacks
Indian online store; specializing in stylish and comfortable footwear. operating online using #Bagisto, an #ecommerce platform built on #laravel shop.shoesshopper.in
#Laravel and #PHP Tip Did you know… you can import multiple classes from a single namespace like this👇 Way cleaner, right? 😁
🚀 Just finished writing a step-by-step guide: “Building a Simple Notebook App with Filament v4”. It goes live tomorrow morning, perfect if you want to learn Filament by building something simple. 👨💻📒 #filament #laravel #tutorial #filament4
#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.
I made up my mind to divert to backend development around august and I have been taking some laravel course for backend development Currently, i am building a help desk support system (backend) with laravel php Day 1: Auth logic set up #backenddevloper #Laravel
#Laravel Tip If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:
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
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
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.
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 use ?? or stick with isset() ? Clean shortcut or confusing syntax? What do you think...👇
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 🚀 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.
Something went wrong.
Something went wrong.
United States Trends
- 1. Powell 61.2K posts
- 2. Metchie 2,174 posts
- 3. Michael Carter 2,630 posts
- 4. Pierre Robert 1,145 posts
- 5. FOMC 54.3K posts
- 6. Huda 34.9K posts
- 7. #NationalCatDay 4,880 posts
- 8. The Fed 90.4K posts
- 9. Sonya Massey 3,196 posts
- 10. Jennifer Welch 13.6K posts
- 11. #DHAtlanta N/A
- 12. Azure 19.6K posts
- 13. DeJean N/A
- 14. HAZBINTOOZ 3,209 posts
- 15. Olandria 57.7K posts
- 16. Sean Grayson N/A
- 17. #SellingSunset 1,321 posts
- 18. NBA Street 3,207 posts
- 19. Kat Abughazaleh 3,830 posts
- 20. Gittens 4,158 posts