#Laravel News
Firebase Cloud Notifications for Laravel
The Syntech Firebase Cloud Messaging (FCM) package for Laravel makes it easy to use Laravel's notification system to send Firebase notifications.
#Laravel Packages
By Paul Redmond | Apr 21, 2025
Verifying Exception Reporting in Laravel with assertReported
Master Laravel's assertReported method from the Exceptions facade to effectively test that your application correctly captures and reports exceptions…
#Laravel Tutorials
By Harris Raftopoulos | Apr 22, 2025
Converting Array Values to Enum Instances with Laravel's mapInto Method
Discover how Laravel's mapInto method simplifies converting array values into PHP enum instances, providing type-safe transformations that make handli…
#Laravel Tutorials
By Harris Raftopoulos | Apr 22, 2025
Confidently Extract Single Array Items with Laravel's Arr::sole() Method
Laravel's Arr::sole() method retrieves a single matching item from arrays while validating uniqueness. This powerful utility throws exceptions for mis…
#Laravel Tutorials
By Harris Raftopoulos | Apr 22, 2025
Laravel's AsHtmlString Cast for Elegant HTML Attribute Management
Laravel's AsHtmlString cast provides automatic conversion of Eloquent attributes to HtmlString instances. This feature simplifies HTML content handlin…
#Laravel Tutorials
By Harris Raftopoulos | Apr 22, 2025
Map Eloquent Attributes into an Object Using the Collection Cast in Laravel 12.10
The Laravel team released v12.10.0, which includes mapping Eloquent attributes using the collection cast into a specific object, checking nested relat…
#News #Laravel Releases
By Paul Redmond | Apr 22, 2025
NativePHP for Mobile v1 — Launching May 2
Build native iOS & Android apps using just Laravel. NativePHP for Mobile v1 release announcement— the same Laravel you've always used, now supercharge…
#News
By Shane Rosenthal | Apr 23, 2025
Safely Retry API calls in Laravel
Idempotency for Laravel is a production-ready package for implementing idempotency in API requests. Clients can safely retry API calls using this pack…
#Laravel Packages
By Paul Redmond | Apr 23, 2025
Generate HTTP Fixtures from Live API Calls in Laravel
The HTTP Fixtures package for Laravel generates fake JSON responses for external API calls in tests. It simplifies creating mock responses by integrat…
#Laravel Packages
By Paul Redmond | Apr 23, 2025
#Freek Dev
Running PHP tests in parallel on GitHub actions
A couple of years ago, Laravel introduced a great feature which allows to run PHPUnit / Pest tests in parallel. This results in a big boost in performance.
By Freek Van der Herten | Apr 22, 2025
Impact, agency, and taste
Many of the most effective people I’ve worked with also do the most metacognition, i.e., reflecting on their own (and their team’s) work and thought processes, and figuring out how to improve them.
By – | Apr 23, 2025
Optimize Bulk Insertions with Laravel's New fillAndInsert() Method
Laravel’s new fillAndInsert() method enables bulk insertions while applying model casting, timestamps, and UUID generation.
By – | Apr 24, 2025
DevOps With Laravel: Queues and Workers in Production
Marin Joo covers configuring Supervisor to manage worker processes, including defining commands, scaling, and logging. He also explores using multiple queues and prioritizing them to optimize worker usage.
By – | Apr 25, 2025
#Medium
Running PHP with Docker: My Symfony Setup
My proven Docker strategy for deploying Symfony apps with Apache, MySQL, and OpenSearch.
By Roman Huliak | Apr 21, 2025
Why I Wrote another bKash Package for Laravel
By Md. Abul Hassan | Apr 21, 2025
Understanding Laravel Policies: A Clean Way to Handle User Authorization
When building web applications, one of the most important aspects to consider is how to manage user permissions. Who can edit a post? Who…
By Developer Awam | Apr 21, 2025
Building Monorepos That Include PHP and Other Languages With Unified CI Pipelines
You ever felt like managing a PHP codebase next to some Node scripts and maybe a sprinkle of Python is like herding caffeinated cats on a…
By Asian Digital Hub | Apr 21, 2025
Creating Webhook Relay Tunnels in PHP For Local Dev Environments
You’re knee-deep in local development, happily testing your latest PHP API, when bam — some third-party service wants to hit your webhook.
By Asian Digital Hub | Apr 21, 2025
Writing Refactoring Assistants in PHP Using Tokenized Abstract Syntax Analysis
You ever crack open a legacy PHP project and feel like you’re staring at a spaghetti dinner someone dropped on the server in 2013? Yeah…
By Asian Digital Hub | Apr 21, 2025
✨ Laravel’s Fluent Class: The Hidden Gem You Probably Aren’t Using (But Should Be)
If you’ve been building with Laravel for a while, you’ve likely come across its robust ecosystem — Eloquent, Collections, Blade, and so on…
By Zest Infotech | Apr 21, 2025
Upload Large files in chunks- s3, Laravel-api, Laravel-Medialibrary, VueJS frontend
Handling large file uploads on the backend can be challenging, regardless of the project size. While there are various solutions available…
By Md Atiqur Rahman | Apr 21, 2025
Top 20 Laravel Packages Every Developer Should Know in 2025 🚀
Laravel has built a name for itself as one of the most elegant and developer-friendly PHP frameworks.
By Devrabiul | Apr 21, 2025
Is PHP Still Relevant? 🤔 The Future Of PHP In 2025 And Beyond 🚀
PHP Has Been A Core Language In Web Development For Decades 🕰️. While New Technologies Have Emerged ⚙️, PHP Continues To Power A Huge…
By Yusuf Emin IRKI | Apr 21, 2025
21 Best BigCommerce apps to skyrocket business in 2025!
BigCommerce is undoubtedly a commendable platform to facilitate your online store, and with its third-party apps, you can take up your…
By Abhishek Agarwal | Apr 21, 2025
WordPress launches AI-powered website builder to create full sites in minutes
WordPress.com has stepped into the future of web development with its brand-new AI-powered website builder. This smart tool allows anyone…
By Indian Digital Marketing Academy | Apr 21, 2025
PHP Monitoring with Performance using APM | Atatus APM
PHP Performance Monitoring gives you full stack visibility into your PHP application performance.
By Atatus | Apr 21, 2025
Have You Tried Asymmetric Visibility in PHP 8.4 Yet?
If you code in PHP, this new feature in version 8.4 is a game-changer!
By reza haj rahimi | Apr 21, 2025
# Laravel Disposable Email Detection
<center>
<img width=”956" alt=”Screenshot 2024–10–04 at 10 34 23 PM”…
By Er Amit Gupta | Apr 21, 2025
Save Time & Code: Advanced StofDoctrineExtensions in Symfony 7 Projects
StofDoctrineExtensionsBundle brings you the best entity management automation you need in a symfony project: creation, soft delete, slug…
By laurentmn | Apr 21, 2025
From ‘I’ll Do It Later’ to Test-Driven Rockstar -PHPUnit for Laravel Devs🔥
“Why write tests when I can just… test it in the browser?”
We’ve all been there. 😅 You’re rushing to meet a deadline, and you tell…
By Sayaka Singh | Apr 21, 2025
Understanding the N+1 Query Problem in Laravel — And How to Fix It
When building applications with Laravel and Eloquent, it’s easy to write code that looks clean but actually causes serious performance…
By yohan dhanushka fernando | Apr 21, 2025
belongsToMany In Laravel
This code defines an Eloquent model in Laravel called Tag. Here's a brief and concise explanation:
By Emmanuel García Fortuna | Apr 21, 2025
Role-Based Access Control (RBAC) in Laravel
What is Role-Based Access Control (RBAC)?
By Dragan Rapić | Apr 21, 2025
Laravel authentication scaffolding kit (Breeze, Jetstream, Fortify & UI)
Laravel is a powerful PHP framework known for its elegant syntax, developer-friendly tools, and rock-solid security features. And one of…
By Dragan Rapić | Apr 21, 2025
Laravel Authorization: Gates vs Policies Explained
When building web applications, controlling who can do what is crucial. Laravel provides two elegant ways to handle authorization: Gates…
By Dragan Rapić | Apr 21, 2025
Building Secure & User-Friendly Password Resets or Email Verification in Symfony 7 (with…
Trust SymfonyCasts PasswordReset and EmailVerification bundles to secure efficiently and quickly your authentication process in Symfony.
By laurentmn | Apr 22, 2025
Laravel Toaster Magic — Beautiful Toast Notifications for Your Laravel App
If you’re building a Laravel app and want to add modern, customizable toast notifications without dealing with complex setup, Laravel…
By Developer Awam | Apr 22, 2025
Laravel 404 – Due to Route Order
Just wanted to share a solution to a frustrating Laravel routing issue that had me stumped for hours and was impacting several features in…
By Nyanor | Apr 22, 2025
Google Search’s core updates and your website
Several times a year, Google makes significant, broad changes to our search algorithms and systems. We refer to these as core updates, and…
By Sourav Barai | Apr 22, 2025
Best PHP Web Scraping Libraries
Web scraping is vital for data collection in many industries, from competitor monitoring to building data-driven apps. While Python…
By DataBeacon | Apr 22, 2025
Managing Long-Lived Background Jobs in PHP with Event Deduplication
You ever had a background job in PHP just keep going like it’s possessed?
By Asian Digital Hub | Apr 22, 2025
Automating Content Classification in PHP Blogs and Forums Using LLM APIs
You know what sucks? Moderating hundreds — sometimes thousands — of blog comments, forum threads, and community posts manually just to…
By Asian Digital Hub | Apr 22, 2025
Laravel Sanctum vs. Passport: Choosing the Right Solution for API Authentication
When it comes to building APIs in Laravel, authentication is a critical component that ensures only authorized users can access specific…
By Satabdi rath | Apr 22, 2025
Boost WordPress Site Speed by 300%
A slow website isn’t just frustrating — it’s bad for SEO, user experience, and conversion rates. When I realized my WordPress site was…
By Clickmasters digital marketing agency | Apr 22, 2025
Creating Stunning Photo Galleries with WordPress Plugins
If you’re a photographer, blogger, designer, or anyone with visual content to showcase, a photo gallery is an essential part of your…
By Webcart | Apr 22, 2025
Troika Tech Unveils Adaptive AI Websites Built to Learn and Grow
As the demand for intelligent, adaptive digital experiences rises across India, Troika Tech Services — headquartered in Mumbai — has…
By Troika Tech – Website Designing Company in Mumbai | Apr 22, 2025
5 Must-Have WordPress Plugins for Every Website
If you’re building or managing a WordPress website, choosing the right plugins can make all the difference. The right tools help boost your…
By Teamsharspire | Apr 22, 2025
WordPress vs. Shopify: Which Platform Truly Fits Your Business Needs?
Explore the ultimate showdown of WordPress vs. Shopify. Compare features, costs, scalability, and ease of use to find the best one.
By Hardik Chapla | Apr 22, 2025
How to Create and Display Data from a Custom WordPress Table Using a Plugin
Custom database tables in WordPress can be handy when storing data that doesn’t fit neatly into posts, pages, or custom post types. In this…
By MD Samrat Hossen Emily | Apr 22, 2025
10 Reasons Why Turbo Addons Is a Must-Have for Every Elementor User
Whether you’re a web designer, developer, business owner, or freelancer, Elementor has become the go-to WordPress page builder thanks to…
By David Akuma | Apr 22, 2025
Build Your WordPress Website with IronHosts: The Complete How-To
Whether you’re starting a personal blog, launching a business site, or building an online store, WordPress is one of the most powerful and…
By Alex Adem | Apr 22, 2025
WP_List_Table in WordPress
Using WP_List_Table To Render Custom Tables in the WordPress Admin
By MD Samrat Hossen Emily | Apr 22, 2025
How to recover a deleted WordPress page?
Have you accidentally deleted a page from your WordPress website and are now looking for a way to get it back? Don’t panic! In this blog…
By Global info support | Apr 22, 2025
How to Build a Custom WordPress Theme from Scratch
Have you ever wanted to design your own WordPress theme from the ground up? Whether you’re doing it for personal use, freelance clients, or…
By WordPress Insights – Dotsquares | Apr 22, 2025
WordPress Ad-Fraud Plugins Trigger 1.4 Billion Daily Ad Requests — A Shocking Wake-up Call for 2025
WordPress Ad-Fraud Plugins Trigger 1.4 Billion Daily Ad Requests — A Shocking Wake-up Call for 2025
By Technijian | Apr 22, 2025
First Blog, Me and Laravel
hello geeks,
By Abdessamed Moulai-Khatir | Apr 22, 2025
Expert Tips for Hiring the Best WordPress Developer for Your Website
Introduction
By Ruby | Apr 22, 2025
Secure Your Laravel App: Tips for Auth, Validation & CSRF in 2025
Security is no longer a nice-to-have feature — it’s an absolute necessity. Whether you’re building a small portfolio site or a large-scale…
By Krunalsinh Rana | Apr 22, 2025
How to Get All SMTP Configured Email Addresses in WordPress
Intro: The Frustration of Finding That One Email Address
By Nowshad Jawad | Apr 22, 2025
How I Build WordPress Tools 3x Faster with AI, GitHub & Zero FTP
Hey there!
By Hasan Aboul Hasan | Apr 22, 2025
Elevate Your Online Presence with AI-Driven WordPress Development in Pune
As one of India’s fastest-growing tech cities, Pune is brimming with startups, educators, developers, and local businesses who need…
By Troika Tech – WordPress Website Developer in Pune | Apr 22, 2025
Laravel Controller to Livewire Component
What bothers me is that Controllers, by default, handle an entire page. If it is a single article page, fine. But if it is a complex page…
By Haryo | Apr 22, 2025
Build a Clean, Scalable SaaS Site in Minutes with SoftCom TNC on Webflow
With the SoftCom TNC Webflow template, startups, software companies, and digital service providers can create a professional online…
By Jaden Morales | Apr 22, 2025
Troika Tech Launches India’s First Full-Scale AI-Powered WordPress Website Development Services
With over 3,000 websites delivered worldwide and a legacy of digital innovation, Mumbai-based Troika Tech Services sets a new industry…
By Troika Tech | Apr 22, 2025
WordPress eCommerce Development Services to Launch Your Store Faster
In the digital era, starting an online store is one of the most effective ways to expand your business. But launching a fully functional…
By Digiauxilio | Apr 22, 2025
Professional Lawn Care Website Template for Easy and Effective Advertising
Get this template: https://vigit.me/nSBVZ
By Heropik | Apr 22, 2025
How to Install Laravel 12 and MaryUI
Laravel is a web application framework with expressive, elegant syntax. A web framework provides a structure and starting point for…
By Akhmad Shaleh | Apr 22, 2025
🚀 AI Code Review: The Hidden Gem That’s Changing How Developers Work 🔍
Last week, I was drowning in code reviews. My team had just pushed several major features, and I found myself staring at a backlog of PRs…
By Owl coder | Apr 22, 2025
🚀 AI Code Review: The Hidden Gem That’s Changing How Developers Work 🔍
Last week, I was drowning in code reviews. My team had just pushed several major features, and I found myself staring at a backlog of PRs…
By Owl coder | Apr 22, 2025
Automate Your Laravel Deployment to Namecheap Shared Hosting with GitHub Actions
A step-by-step guide to setting up a CI/CD pipeline for Laravel using GitHub Actions, tailored for Namecheap’s shared hosting environment.
By Anthony Shoshi Gomes | Apr 22, 2025
Build MVPs Faster with Telpun: Real-Time Without the Boilerplate
As a developer or startup founder, getting your Minimum Viable Product (MVP) out quickly is crucial. But if your app needs real-time…
By Fariz Yoga Syahputra | Apr 22, 2025
PHP: Advantages, Use Cases, and Future Perspectives
PHP (Hypertext Preprocessor) remains one of the most popular programming languages for web application development. According to various…
By Pavlo Usachov | Apr 22, 2025
Abusing WordPress XML-RPC Pingbacks for DDoS Amplification
As an ethical hacker, my job isn’t just to break things — it’s to understand how they break, why they break, and how to help fix them…
By Hafsa Rehman | Apr 22, 2025
FlightPHP-One of the fastest PHP frameworks
PHP is just a hammer. Nobody has ever gotten rich making hammers.
By Hi I am Iskender. | Apr 22, 2025
Most Effective Methods to Monetize Your WordPress Website in 2025
Running a WordPress website today is more than just publishing articles. It’s a powerful tool for building a business, creating passive…
By Wpeopleofficial | Apr 22, 2025
30 Days To Learn Laravel: A Beginner’s Route
#laravel #webdev #laracasts #beginner
By Ncleverpreston | Apr 22, 2025
Code refactoring with AI
Working with legacy codebases often sparks that inevitable urge to refactor. Maybe it’s a tangled block of code that obscures its true…
By Thao TL | Apr 22, 2025
Why Your Laravel Migration Needs a Solid down()
You’ve inherited a legacy Laravel app with a posts table. It’s got the usual stuff: title, content, timestamps… and a type column.
By Ahmad Alhajh | Apr 22, 2025
Professional Lawn Care Website Template for Easy and Effective Advertising
Get this template: https://vigit.me/nSBVZ
By Graphic Reserve | Apr 22, 2025
Laravel 11 Breeze Multi Authentication Example
Hello, laravel web developers! In this article, we’ll see how to create multi-auth using Breeze in laravel 11.
By Techsolutionstuff | Apr 22, 2025
Freelancer vs. Dedicated Team: What’s Best When Hiring PHP Developers?
When you need to build or scale a PHP-based web application, one big decision stands in your way:
By VelanApps | Apr 22, 2025
Why WordPress Websites are So Popular Today
In the ever-evolving world of web development, WordPress has emerged as the most popular content management system (CMS) in the world…
By opinzy info | Apr 22, 2025
How to Build a Hotel Booking Website with WordPress? Direct Bookings, OTAs Sync & More
What’s the best way to build a website with a WordPress hotel booking plugin?
By MotoPress | Apr 22, 2025
10 Best WordPress Blog Themes for 2025: Build a Stunning Online Presence
In today’s digital landscape, your blog isn’t just a place to write — it’s your personal brand, your digital storefront, and your…
By Asuman Amaç | Apr 22, 2025
How to Remove or Change Footer Credit in WordPress (No Coding Needed)
Do You Know That 70% of WordPress Users Want to Customize Their Footer Credit?
By React Theme | Apr 22, 2025
What is Bitnami? Your App Deployment Sidekick
Imagine launching a fully functioning web app — complete with a web server, database, and all dependencies — with just a few clicks…
By Farah | Apr 22, 2025
Getting Your PHP Setup Right: A Step-by-Step Troubleshooting Guide
Running into PHP errors? You’re not alone. Whether you’re launching your first PHP app or configuring a dev environment, this guide will…
By Farah | Apr 22, 2025
What’s New in PHP 9.0: A Fresh Chapter for PHP Developers
PHP 9.0 has arrived! 🎉 Whether you’ve been working with PHP for years or you’re just getting started, this release has something exciting…
By Satabdi rath | Apr 23, 2025
The Evolution of Symfony: From Version 1 to Version 7 — Key Milestones and Developer Features
Each Symfony version continue providing big value to developer to make easier php development as now Symfony is the more used PHP…
By laurentmn | Apr 23, 2025
Elastic Evolution of a Web Application — WordPress (Stage 1)
This project is based on Adrian Cantrill’s Elastic WordPress Evolution lab. Check it out here!
By Izaiah Soriano | Apr 23, 2025
⚡ Supercharge Your Laravel Livewire Workflow with Magic Actions (No Extra Methods Needed!)
Have you ever felt like you’re writing way too many tiny methods in your Livewire components for really basic stuff?
By Developer Awam | Apr 23, 2025
Item Song
Logarithmic Thumka
By DP Chor | Apr 23, 2025
Transitioning Application from CodeIgniter to Laravel:
Moving from CodeIgniter to Laravel can seem challenging, especially if you’re used to CodeIgniter’s simple framework. However, Laravel…
By Satabdi rath | Apr 23, 2025
How to Set up a DMARC Record in GoDaddy [05 Easy Steps]
Setting up a DMARC (Domain-based Message Authentication, Reporting, and Conformance) record is crucial for securing your email domain and…
By Hamza Hanif | Apr 23, 2025
Mastering Docker for Laravel: A Beginner’s Guide to Setup
By Dominik | Apr 23, 2025
How to Convert a WordPress Website to Webflow? (A Complete Guide)
Thinking about switching from WordPress to Webflow? You’re not the only one. Many people feel stuck using WordPress, it can be slow…
By AIM Digital Technologies | Apr 23, 2025
Symfony 7: Keeping Up with PHP 8.4 and New Opportunities for Modern Development
Symfony is one of the most popular PHP frameworks, setting standards in web development for over 15 years. Its flexibility, modularity…
By Pavlo Usachov | Apr 23, 2025
Setting Up Laravel application using docker in xampp server
Create laravel application by following command.
By Rohit Vyas | Apr 23, 2025
Running PHP with WebContainers to Simulate Full Apps in the Browser
For decades, PHP rode shotgun in the traditional LAMP stack — Linux, Apache, MySQL, PHP.
By Asian Digital Hub | Apr 23, 2025
Scheduling and Retrying Failed Actions in PHP with Time-Based Queues
So your app crashed mid-task. Your queue job blew up halfway through a database update, and now your user is staring at a spinner that just…
By Asian Digital Hub | Apr 23, 2025
Deploy a PHP web app with Docker & K8s, with NGINX, PHP, and a CI/CD pipeline powered by GitHub…
This quick article walks through how we containerized our app with a clean and efficient Docker setup — featuring NGINX, PHP, Redis, and…
By Marouane Louguid | Apr 23, 2025
Using PHP to Coordinate API Calls Across Multiple Third-Party Services at Scale
Honestly juggling third-party APIs feels like herding caffeinated cats in a server room.
By Asian Digital Hub | Apr 23, 2025
Top 6 WordPress Themes To Use in 2025
Defining the “perfect” WordPress theme is a moving target — and frankly, not the right question to ask in 2025. The real challenge is…
By Web Designer Depot | Apr 23, 2025
Why do you think Laravel is popular among developers?
Laravel is popular among developers for a variety of reasons, both technical and practical. Here’s why it stands out:
By Intellibeans Technologies | Apr 23, 2025
Laravel Cron Jobs Made Stupidly Simple (Try This Now!) ⏰⚡
Setting Up Your First Cron
By Mayur Koshti | Apr 23, 2025
Why It’s crucial to use PHP 8 features — Stop ignoring them
Why ignoring modern PHP 8 features is hurting your code quality, performance, and productivity — and what you should be using instead.
By Roman Huliak | Apr 23, 2025
OSINT Methodologies #1
Extracting a website’s content, from API to spreadsheet
By Jaune Le Carré | Apr 23, 2025
Boost Your Laravel Skills: Simplify Code with Blade Helpers
Learn how Blade Helpers can save you time, reduce code repetition, and make your Laravel apps cleaner and easier to maintain.
By Ferdy Hahan Pradana | Apr 23, 2025
Why I Built phpkg: Unlocking Functional Programming in PHP
From OOP Overload to Functional Freedom
By Morteza | Apr 24, 2025
Making API Resources More Elegant with Laravel’s Fluent Methods
Tired of jumping through hoops to transform your Eloquent models into API resources? Laravel’s fluent resource methods offer a more elegant…
By Harris Raftopoulos | Apr 24, 2025
Laravel Architecture Evolved: AQC Took Over Everything
If you’ve been following my Laravel writing journey, you know where we started.
By Raheel Shan | Apr 24, 2025
Introduction to Sonarqube
At the stage when a developer reads Clean Code, it feels like they’ve discovered “the panacea.” That sense of growth is like when Thanos…
By Gerardo Herrera | Apr 24, 2025
I will design and develop a professional wordpress website and blog
https://shorturl.at/AhO3n
By Jjuliedcabrera | Apr 24, 2025
Build Real Native Mobile Apps with Laravel? Now You Can.
For years, Laravel has been the go-to framework for building robust and elegant web applications. But what if I told you that you can now…
By Developer Awam | Apr 24, 2025
I Tamed My Wild API with Laravel 11’s Magic Touch
Previously, our API was getting hammered. I’d wake up to alerts at 3 AM showing that some eager client was making over 5,000 requests per…
By Mehdi BAFDIL | Apr 24, 2025
Laravel 12.1
By Ray Lee | 李宗叡 | Apr 24, 2025
How to Upload PDF, Word, and Excel Files and Fetch Data from Them in Laravel
In today’s digital era, handling various file formats such as PDF, Word, and Excel is essential for web applications. These formats are…
By Satabdi rath | Apr 24, 2025
Using Code Owners and Static Rules to Enforce Team-Wide PHP Conventions
You ever been in a repo so messy it feels like everyone’s playing Jenga with production? One PR adds snake_case, the next switches to…
By Asian Digital Hub | Apr 24, 2025
The correct way to add custom route files in Laravel (11.x and up)
I’m building a new backend in Laravel 12.x, and while adding some new routes, I noticed that my routes/api.php file was getting messy…
By Thomas Hysselinckx | Apr 24, 2025
Creating Package Health Dashboards in PHP for Managing Composer Dependencies
If your PHP project feels like it’s held together by duct tape and Composer spit — yeah, we’ve all been there.
By Asian Digital Hub | Apr 24, 2025
What should I focus on when designing and developing a WordPress website in 2025?
When designing and developing a WordPress website in 2025, it’s all about speed, user experience, mobile-first design, and AI integration…
By Intellibeans Technologies | Apr 24, 2025
Bad choice — Laravel 11, FrankenPHP, and FilamentPHP.
Recently I started building small app using laravel tech stack , but leter stack I realised it was a very bad idea, tell you why?
By Deven Sitapara | Apr 24, 2025
Laravel Breeze Made Simple: QuickStart for Laravel Developers
Introduction
By Lucy | Apr 24, 2025
Simplifying Relationship Queries with Laravel’s whereAttachedTo Method
Navigating relationships in Laravel’s Eloquent ORM just got more elegant with the introduction of the whereAttachedTo() method—a powerful…
By Harris Raftopoulos | Apr 24, 2025
PHP 8.5: Release Date and Features, April 2025
As of April 2025, PHP 8.5 is in active development, with its release scheduled for November 2025. This upcoming version introduces several…
By Doğan Uçar | Apr 24, 2025
Understand performance profiling tools in PHP
Boost your PHP applications by mastering profiling tools
By Roman Huliak | Apr 24, 2025
Laravel Tips: Create a Flexible and Valuable Backend with Polymorphic Concept
Streamline your Laravel backend with polymorphic models and reduce redundant code for a smarter structure.
By Ferdy Hahan Pradana | Apr 24, 2025
Generate PDFs in Symfony in a Few Minutes
Do you need to export beautiful, print-ready PDFs straight from your Symfony app? You’re in the right place, let’s make it simple, fast…
By Lubna Altungi | Apr 24, 2025
Atomic Query Construction (AQC) Design Pattern — Explained
In the last two posts, I introduced the Atomic Query Construction (AQC) design pattern and showed how it transformed my Laravel…
By Raheel Shan | Apr 25, 2025
Building HIPAA-Compliant Patient Registration Systems with WordPress: Technical Guide
Every time a patient completes your online registration form, they’re entrusting you with their most sensitive personal information —…
By Gil Vidals | Apr 25, 2025
PHP REST API Cybersecurity — from zero to hero
Hi, current article is a short representation of my course: “PHP REST API Cybersecurity”.
By Demianchuk Sergii | Apr 25, 2025
DTO vs Resource in Laravel: What’s the Difference and When to Use Each
In Laravel applications, managing how data enters and leaves your system is crucial for clean, maintainable code. Two powerful concepts…
By Chimeremze Prevail Ejimadu | Apr 25, 2025
🔍 Laravel Benchmarking: How Fast is Your Code Really Running?
Ever wondered how fast a certain part of your Laravel application actually runs? Maybe you’re refactoring code, optimizing performance, or…
By Developer Awam | Apr 25, 2025
🧠 What Laravel Taught Me About Building (and Letting Go) in Life and Code
There’s a strange, poetic thing that happens when you spend years writing code:
By Sayaka Singh | Apr 25, 2025
The Undead Language That Runs the Internet
If you’ve been in web development for long enough, you’ve likely heard the same story about PHP over and over. “PHP is dead.” It’s the tech…
By Davor Pavlekovic | Apr 25, 2025
Global Translation Parameters in Symfony 7.3
Say goodbye to repeating the same translation parameters everywhere.
By Bhavin Nakrani | Apr 25, 2025
What is DNS Hijacking? [How to Detect & Prevent It]
DNS hijacking is a malicious attack where hackers manipulate DNS records to redirect users to fraudulent websites without their knowledge…
By Hamza Hanif | Apr 25, 2025
My First PhpStorm Plugin: Supporting Bumbu in the IDE
👉 This article is a follow-up to my post “How I Built a PHP Package for Symfony, Inspired by Lombok: From Idea to Execution”.
In that…
By DKashchavtsev | Apr 25, 2025
Building Privacy-First PHP Analytics Tools with No Cookies and Full Compliance
Your users are sick of the cookie banners. Hell, you might be too. They clutter the interface, scream “We’re watching you,” and worst of…
By Asian Digital Hub | Apr 25, 2025
Managing Dynamic UI States with PHP as a Headless Command Engine
PHP ain’t just that backend guy anymore. You thought it peaked with forms and CMS themes? Nah. It’s now sneaking into your UI layer — not…
By Asian Digital Hub | Apr 25, 2025
Best WordPress Employee Management Plugins for 2025
Managing employees efficiently is key to running a successful business. In today’s digital age, leveraging the right tools can make a…
By Webcart | Apr 25, 2025
Top 10 Premium WordPress Themes for 2025
With WordPress powering over 40% of the web, the demand for high-quality, premium WordPress themes has only grown. Whether you’re a…
By Webcart | Apr 25, 2025
Ruanning Interactive Fiction or RPG Engines Using PHP and Web AI
PHP doesn’t have the sex appeal of Rust or the hype of TypeScript. But when you want to throw a story engine on a low-resource server…
By Asian Digital Hub | Apr 25, 2025
Discontinuous Time Segments in Tracing with opentelemetry-auto-laravel in PHP
The Main Course
By seth-shi | Apr 25, 2025
Performance Showdown: Optimizing PHP Blog Platforms for Speed and Scalability
Ever clicked on a blog post, eagerly anticipating insightful content, only to be met with a glacial loading screen? That frustrating pause…
By WebandSEOadvisor | Apr 25, 2025
Laravel2ERD: Instantly Generate Entity Relationship Diagrams for Your Laravel Projects
As your Laravel application grows, understanding the underlying data structure can become a daunting task. Whether you’re onboarding new…
By MD. SHARIF ALAM | Apr 25, 2025
A New Era of Rapid App Development: Introducing the Template Module for 24stack
Cybrient Technologies SA Unveils the Template Module for 24stack, Accelerating Community-Driven App Creation
By Cybrient Technologies | Apr 25, 2025
I supercharged Laravel’s aging Seeder
Yeah, it’s a decade old thing
By Italo Baeza Cabrera | Apr 25, 2025
How To Use Enum In laravel 12
Enums were introduced starting in laravel 11 with the command “php artisan make:enum”. As with every Artisan command, you can provide the…
By Akhmad Shaleh | Apr 25, 2025
Extending Laravel’s URI Class with Custom Macros
Laravel has always excelled at making common web development tasks elegant and expressive. With the addition of the Macroable trait to the…
By Harris Raftopoulos | Apr 25, 2025
Unlock Big Savings with Wclovers Coupons: Build Your Dream Marketplace for Less
By Favdigitalindia | Apr 25, 2025
Hear Your Blog
Converting WordPress Posts into Audio with ElevenLabs
By Rich Brown | Apr 25, 2025
Bringing Laravel-style Named Routes and Dynamic Params to Next.js
When I first started working with Next.js, coming from years of experience with Laravel, I immediately missed one particular thing: named…
By Sami Maxhuni | Apr 25, 2025
WordPress vs Wix: Which Platform Builds a Better Marketing Website in 2025?
Imagine this.
By Jenniferjohonson | Apr 25, 2025
Substack Is the #1 Blogging Platform 2025
Even though I didn’t give it #1 in my recent platforms rankings
By Burk | Apr 25, 2025
PHP vs. Node.js in 2025: The Startling Performance Reality
For years, the web dev world has been locked in a showdown: PHP vs. Node.js. Each side has its die-hard fans, endless Reddit threads, and…
By Cloud Guru | Apr 26, 2025
How I Finally Fixed the WordPress ‘No Referring Sitemaps Detected’ Error in GSC 2025
That Google Search Console sitemap error? I finally fixed it. See how.
By Purple Gram | Apr 26, 2025
Debugging PHP in VS Code with Docker and Xdebug on WSL2
Debugging is really important and very useful. While setting up Xdebug with Docker and VS Code is beneficial, configuration and…
By Matvei | Apr 26, 2025
Boost Your Plugin’s Security Rating with Proper Nonce Usage
If you’re a WordPress plugin developer, you’ve likely focused on functionality, performance, and maybe even some SEO. But what about…
By RR Coders | Apr 26, 2025
Step-by-Step Guide to Converting HTML to WordPress: Unlock Your Website’s Potential
In the age of the Internet, having an interactive, friendly website is key. Although static HTML websites are stable, changing them to…
By Xhtmlchop | Apr 26, 2025
20 Must-Have eCommerce Plugins to Power Up Your Store
Running an eCommerce store goes beyond just having fantastic products — it’s all about creating a smooth, secure, and engaging shopping…
By Gplmedialinks | Apr 26, 2025
🔐 Why You Should Embrace Laravel Jetstream for Modern Authentication ⚡
In today’s fast-paced digital world, securing your web applications has never been more critical. Every day, we hear about data breaches…
By mohamad shahkhajeh | Apr 26, 2025
How to Speed Up Your WordPress Website: Simple Tips That Work
By EMEKE JOSHUA | Apr 26, 2025
How to Design a Website That Converts Visitors Into Customers?
1. Know Your Goal 🎯
By Rakib Zone | Apr 26, 2025
AI Website Design Company in Mira Road — Troika Tech
In today’s fast-moving digital world, having a professional website is crucial for every business. If you’re searching for the best AI…
By Website Design Company in Mira Road – Troika Tech | Apr 26, 2025
Laravel Development Service: Delivering Next-Gen Web Applications for Modern Businesses
Today’s fast-paced business world demands robust and innovative digital solutions. Choosing the right Laravel Development Service can be…
By Disciplineseo | Apr 26, 2025
How I Took a 12 second Jet Engine Dynamic Table and Made It Render in Under 1 Second
…And blew past Google Core Vitals, GTmetrix scores, and the dreaded “PageSpeed element” limit
By Dimitris Vayenas | Apr 26, 2025
Prompt Engineering: Analyzing 275 résumés in under 1 hour with PHP and Claude 3.5 on AWS Bedrock
TLDR — I wrote a tiny PHP pipeline that extracts, standardizes and analyzes résumés with Claude 3.5 (AWS Bedrock).
The result? From 275…
By Pedro Rosa | Apr 26, 2025
How to Avoid Image Copyright Lawsuits in WordPress
Using photos in your content? Always credit authors and check licenses — skipping it can cost you big in legal fines.
By Dawid Ptak | Apr 26, 2025
A Pitfall When Developing Optional Token-Passing API Interfaces
When developing APIs, authentication is inevitable. I use jwt-auth for this purpose.
By seth-shi | Apr 26, 2025
Using laravel-s in Docker (Including Queue Usage)
Environment Configuration
By seth-shi | Apr 26, 2025
Model mutators overriding explicit slug values in seeders! 🐛
As Laravel developers, we often rely on model features to handle transformations automatically. However, these convenient features can…
By Sixtus Agbo | Apr 26, 2025
How to Improve Elementor Page Speed
If you’re building websites with Elementor, you already know how powerful and flexible it is. But with all those features and design…
By Enayetur Rahman | Apr 26, 2025
How to Setup a Rest API on any Laravel Version For Beginners.
Creating a REST API, might seems like a pretty much difficult task. First we need to consider what a REST API means, Representational…
By Patrick | Apr 26, 2025
Keep It Clean: Make Your Laravel Code Cleaner and Smarter Using Accessors and Mutators
Automate data formatting with Accessors and Mutators — keep your controllers clean and your Laravel app easy to maintain.
By Ferdy Hahan Pradana | Apr 26, 2025
Building Scalable and Flexible AI Integrations in Laravel
In the real world, you might start by integrating a single AI service, but over time, you might want to add more AI providers like Deepseek…
By Alexander | Apr 27, 2025
Laravel: Handle Large Datasets with little processing power.
(Chunk, ChunkById and Lazy Collections)
By Alhassan Mohammed | Apr 27, 2025
How Olvy is Helping Chinese Manufacturers Go Global with WordPress Hosting
As Chinese manufacturers increasingly expand into international markets, having a fast, secure, and globally accessible website has become…
By Olvy Cloud | Apr 27, 2025
Writing Test-First PHP Codebases Using Behavior-Driven Workflows
You know what wrecks more PHP projects than bad coffee at a hackathon?
Code that “kinda works” until it kinda doesn’t, leaving devs…
By Asian Digital Hub | Apr 27, 2025
Building Voice-Controlled PHP Dashboards Using Whisper and Browser Mic APIs
You ever feel like typing is just way too last season?
While the world’s busy chasing the next AI trend, a quiet revolution is sneaking…
By Asian Digital Hub | Apr 27, 2025
How to Supercharge Your PHP Workflows with OpenFeature Without Losing Your Sanity
You ever feel like your PHP app is doing the robot shuffle — rigid, inflexible, allergic to change? One tiny tweak, and boom — you’re…
By Asian Digital Hub | Apr 27, 2025
Custom Websites, like Way Custom [Divi Builder]
Custom, like Way Custom — Websites
By Lenny Vineham | Apr 27, 2025
🌟 Essential WordPress Plugins Every Digital Marketer and Freelancer Must Install (Starter Pack…
Kickstart Your Website Like a Pro — These Basic Yet Powerful Plugins Are All You Need.
By Tausif N Akbar | Apr 27, 2025
Tune php.ini for security: Essential tips for PHP developers
Strengthen your PHP applications by locking down your php.ini settings — a simple yet powerful way to boost security.
By Roman Huliak | Apr 27, 2025
Exploring the Latest Updates in PHP 8.4.6 with Practical Examples
The release of PHP 8.4.6 has brought improvements that elevate the developer experience with bug fixes, performance enhancements, and added…
By Sadique Ali | Apr 27, 2025
How I Built a Full WordPress CRM Plugin with Elementor Integration (From Scratch)
🧩 Introduction
By Siraji | Apr 27, 2025
Dockerizing My Slim API: Running a PHP Microservice Locally and Beyond
Build once, run anywhere — Dockerizing a simple Slim-based API for smooth microservice workflows.
By Mustafa Culban | Apr 27, 2025
Livewire breaks in production for no apparent reason
Your Livewire app breaks only in production. Components randomly disappear when interacting with your app. The console says e.g.
By Konstantin Auffinger | Apr 27, 2025
Laravel 12 Model Observers Tutorial With Basic Example
Laravel Observers are used to group event listeners for a model eloquent. Laravel Observers will listener event for model eloquent method…
By Umer Ghouri | Apr 27, 2025
Laravel NativePHP for Absolute Beginners: Building Desktop Apps with PHP
PHP is mostly known for powering websites, but what if you could build full-fledged desktop applications with it — using the Laravel you…
By Alhassan Mohammed | Apr 27, 2025
🚀 7 Must-Know PHP + API Techniques to Skyrocket Your Development Skills
Explore PHP + API Magic
By Mayur Koshti | Apr 27, 2025
Symfony Station Communiqué — 25 April 2025 — A look at Symfony, Drupal, PHP, and other programming…
This communiqué originally appeared on Symfony Station.
By Reuben Walker | Apr 27, 2025
Mastering Immutable Types in PHP
Mastering Immutable Types in PHP
By Abd. Asis | Apr 27, 2025
All-in-One WP Migration vs UpdraftPlus: Which WordPress Backup Plugin Should You Choose in 2025?
Choosing the perfect backup and migration plugin is one of the smartest things you can do for your WordPress site. In 2025, two plugins…
By Akaeid Hasan | Apr 27, 2025
#Made with Laravel
Aureus ERP – Open-source ERP Platform
"Aureus ERP is a comprehensive, open-source Enterprise Resource Planning (ERP) solution designed for Small and Medium Enterprises (SMEs) and large-scale enterprises.
Built on Laravel, the most popular PHP framework, and FilamentPHP, a dynamic resource management library, Aureus ERP offers an extensible and developer-friendly platform for managing every aspect of your business operations."
#App #Boilerplate
By – | Apr 22, 2025
Laravel Locations – List of Countries, Cities, Areas, Languages & Currencies
"This package provides a large database with Country, City, Area, Language and Currency models for your Laravel application.
The package is ideal if you need to build:
Country/region selection dropdowns
Address validation and normalization
Multi-language support for location names
Currency conversion functionality
Location-based features and filtering
It contains 250 countries, 5000+ cities and 145000+ areas."
#Utility
By – | Apr 22, 2025
#Mastering Laravel
When validation can protect your app's performance
Is there anything validation can't do?
By Joel Clermont | Apr 21, 2025
Be nice when reviewing code
It's not just about finding mistakes
By Joel Clermont | Apr 22, 2025
Make a code review more fun
Work doesn't have to be boring
By Joel Clermont | Apr 23, 2025
An interesting idea for PR comments
One extra word can make a difference
By Joel Clermont | Apr 24, 2025
Better mock assertions with Eloquent models
Nice and clean, the Laravel way
By Joel Clermont | Apr 25, 2025
#Securing Laravel
Security Tip: Yes, Your .Env Is Secure Enough!
[Tip #109] I get asked this all the time, so it's time to set the record straight: there is nothing insecure about storing your credentials in a .env, as long as you keep your .env protected!
By Stephen Rees-Carter | Apr 23, 2025
#Dev.to
Parallel Processing with PHP: why, how, and when
#php #performance #tutorial #programming
By Roberto B. | Apr 21, 2025
Top 20 Laravel Packages Every Developer Should Know in 2025 🚀
#laravel #webdev #programming #javascript
By Rabiul Islam | Apr 21, 2025
How To Mock a Nested Laravel Artisan Command
#php #laravel #webdev
By Abdul | Apr 21, 2025
Deploying Laravel Applications to Shared Hosting via Git and cPanel
#webdev #laravel #deployment #programming
By Akshay Joshi | Apr 21, 2025
Laravel Pennant: Releasing features with Feature Flags
#programming #webdev #laravel #php
By Aleson França | Apr 21, 2025
How to Build a Blog with Laravel (& Send Slack Notifications)
#laravel #php
By Alex | Apr 22, 2025
2145. Count the Hidden Sequences
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 22, 2025
Why Your Business Needs a Laravel Development Services Company in 2025
#laravel #development #webdev #programming
By krishna sharma | Apr 22, 2025
Monitoring PHP-FPM Logs and Metrics: A Practical Guide to Debugging and Optimization
#php #phpmonitoring
By Olivia Madison | Apr 22, 2025
Next.js Is Just Fancy PHP for People Who Fear Simplicity
#nextjs #php #webdev #discuss
By Structax | Apr 22, 2025
Simplify Many-to-Many Relationships in Yii2 with yii2-m2m-behavior
#php #yii2 #opensource #webdev
By Jonatas Sas | Apr 22, 2025
Simplify Many-to-Many Relationships in Yii2 with yii2-m2m-behavior
#php #yii2 #opensource #webdev
By Jonatas Sas | Apr 22, 2025
2338. Count the Number of Ideal Arrays
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 22, 2025
Abstract Classes in PHP: What They Are and How to Use Them
#webdev #php #web3 #programming
By Patricia Hernandez | Apr 22, 2025
🔌 Como implementar WebSocket com Laravel, Laravel Echo Server e Socket.IO
#php #laravel #websocket #broadcasting
By Luís Paulo Ferreira | Apr 22, 2025
How to use Terraform resource to manage Infrastructure
#terraform #aws #vscode #php
By Olalekan Oladiran | Apr 23, 2025
Processing Large-Scale Data with Parquet Files: Pros and Cons
#data #webdev #tutorial #php
By Saif Uddin | Apr 23, 2025
Handling Large Datasets in PHP Without Running Out of Memory
#webdev #php #performance #backenddevelopment
By Patoliya Infotech | Apr 23, 2025
Unlocking Peak PHP Performance: A Complete Guide to Monitoring with Atatus
#php #symfony #laravel #webdev
By Olivia Madison | Apr 23, 2025
Laravel Development Services in 2025: What You Need to Know
#webdev #laravel #php #framework
By Tech Reinvent | Apr 23, 2025
UX DataTables, a Symfony bundle integrating the DataTables library in Symfony applications.
#symfony #php #javascript #ux
By Pentiminax | Apr 23, 2025
Getting started with FrankenPHP, Laravel and Docker
#laravel #php #docker #frankenphp
By Dan Storm | Apr 23, 2025
Understanding `self` vs `static` in PHP
#webdev #php #programming
By Hamdi LAADHARI | Apr 23, 2025
1399. Count Largest Group
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 23, 2025
I am learning Laravel for Web development
#laravel #webdev #learning
By Shafi Ul | Apr 24, 2025
LifetechOCMS V2.5.0 Released
#news #opensource #php #cli
By Abolore Ajayi | Apr 24, 2025
🚀 Boost Your Dev Workflow: Shell Scripts to Automate NGINX/Apache + Laravel/React/Vue Setup
#nginx #laravel #react #vue
By Andoromain | Apr 24, 2025
How I Built a Laravel Virtual Wallet (And Why You Might Need One Too)
#opensource #laravel #virtualwallet #programming
By Neeraj Saini | Apr 24, 2025
Advanced Laravel Dashboard for your application in 2025
#laravel #dashboard #tailwindcss #react
By Maniruzzaman Akash | Apr 24, 2025
Symfony: Invokable command
#php #symfony #laravel
By david duymelinck | Apr 24, 2025
Understanding Composer Version Constraints: A Comprehensive Guide
#php #programming #symfony #webdev
By Hamdi LAADHARI | Apr 24, 2025
MyEVE is a customizable platform for CRM and business apps…
#javascript #productivity #discuss #php
By MyEVE | Apr 24, 2025
2799. Count Complete Subarrays in an Array
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 24, 2025
Master PHP 8.3: The Ultimate Guide for Modern Web Developers
#php #webdev #programming #javascript
By Code WithDhanian | Apr 24, 2025
Object Calisthenics in PHP with Laravel: Improve Your Object-Oriented Code
#programming #laravel #php #oop
By Aleson França | Apr 25, 2025
PHP Quines: Self-Replicating Code Explained
#webdev #php #programming #quines
By Zxce3 | Apr 25, 2025
2845. Count of Interesting Subarrays
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 25, 2025
Building Relaticle: A Free & Open Source CRM with Laravel 12 & Filament 3
#laravel #php #opensource #crm
By Manuk | Apr 26, 2025
Make a Laravel Blade App Feel Like a Single Page Application (SPA) — Without Vue or React!
#php #laravel
By Tushar Imran | Apr 26, 2025
FlyEnv with Minio
#flyenv #minio #mac #laravel
By Reza Shadman | Apr 26, 2025
2444. Count Subarrays With Fixed Bounds
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 26, 2025
How to Avoid Image Copyright Lawsuits in WordPress
#wordpress #programming #php #webdev
By Dawid Ptak | Apr 26, 2025
Symfony Station Communiqué - 25 April 2025 - A look at Symfony, Drupal, PHP, and other programming news!
#symfony #drupal #joomla #php
By Reuben Walker, Jr. | Apr 27, 2025
💥 Sentry.io: আপনার অ্যাপ্লিকেশনের ত্রুটি খুঁজে বের করার এক বিশ্বস্ত সমাধান
#webdev #programming #laravel
By Mehedi Hasan | Apr 27, 2025
How to Prevent Remote Code Execution (RCE) Vulnerabilities in Symfony
#cybersecurity #vulnerabilities #symfony #php
By Pentest Testing Corp | Apr 27, 2025
Creating Custom Classes in Laravel Without Custom Commands
#laravel #php #webdev #packagist
By Usman Zahid | Apr 27, 2025
3392. Count Subarrays of Length Three With a Condition
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Apr 27, 2025
#Amit Merchant
Making API Resources More Elegant with Laravel's Fluent Methods
Tired of jumping through hoops to transform your Eloquent models into API resources? Laravel's fluent resource methods offer a more elegant approach that will make your code cleaner and more intuitive.Understanding the ProblemWhen building APIs with Laravel, transforming your Eloquent models into resources is a common
By Harris Raftopoulos | Apr 23, 2025
Simplifying Relationship Queries with Laravel's whereAttachedTo Method
Navigating relationships in Laravel's Eloquent ORM just got more elegant with the introduction of the whereAttachedTo() method—a powerful shorthand that simplifies one of the most common relationship queries developers write.The Challenge with Many-to-Many FiltersIf you've worked with Laravel's Eloquent ORM, you&
By Harris Raftopoulos | Apr 24, 2025
Extending Laravel's URI Class with Custom Macros
Laravel has always excelled at making common web development tasks elegant and expressive. With the addition of the Macroable trait to the URI class, you can now create your own custom URL manipulation methods that feel like they were built into the framework from day one.Understanding the URI Class
By Harris Raftopoulos | Apr 25, 2025
#IT Solution Stuff
Laravel 12 Stripe Payment Gateway Integration Example
In this post, I will show you how to integrate stripe payment gateway in laravel 12 application from scratch.
Stripe is a very popular and secure internet payment gateway company that helps to accept…..
#Laravel
By Hardik Savani | Apr 21, 2025
Laravel 12 Generate and Read Sitemap XML File Tutorial
Discover how to create and use XML sitemaps in Laravel 12 for better SEO results. Learn the basics of generating and reading sitemap files with ease.
<strong>What is an XML Sitemap?</strong>
An XML s…..
#Laravel
By Hardik Savani | Apr 22, 2025
How to use Multiple Database in Laravel 12?
In this post, I will show you how to setup multiple database connection in laravel 12 application.
In Laravel 12, you can define and use multiple database connections in your application. This featur…..
#Laravel
By Hardik Savani | Apr 22, 2025
Laravel 12 Summernote Image Upload Tutorial
In this post, I will show you how to image upload with the Summernote editor in the laravel 12 application.
Summernote is a WYSIWYG (What You See Is What You Get) editor that allows users to create r…..
#Laravel
By Hardik Savani | Apr 23, 2025
How to Create Event Calendar in Laravel 12?
In this tutorial, we will learn how to create a dynamic event calendar with laravel 12 fullcalendar.
FullCalendar is a tool for organizing events. You can add, edit, and create events easily. It help…..
#Laravel
By Hardik Savani | Apr 24, 2025
Laravel 12 User Roles and Permissions Tutorial
In this tutorial, I will share with you user roles and permissions using spatie/laravel-permission package in laravel 12 application.
We are using the Spatie GitHub package for roles and permissions …..
#Laravel
By Hardik Savani | Apr 24, 2025
Laravel 12 Image Intervention Tutorial With Example
Learn, how to use the image intervention composer package for image resizing in the laravel 12 application.
Intervention Image is an open-source PHP image manipulation library. It provides an easier …..
#Laravel
By Hardik Savani | Apr 25, 2025
#Stitcher
PHPverse 2025
By Brent | Apr 24, 2025
Tempest's discovery explained
By Brent | Apr 26, 2025
#Msamgan
Tricking Laravel Into Auto-Loading Routes
By Msamgan | Apr 25, 2025