Streamline cross-platform messaging in Laravel applications using the notification framework. Send consistent alerts via email, database, and external services through…
Libraries & Frameworks
Notable is a Laravel package that adds polymorphic note functionality to any Eloquent model. It allows you to attach notes/comments…
This blog explains how to install and configure OpenPlatform as the final step in setting up the Total.js IoT platform,…
I am trying to find an MQTT broker which is compatible with hive MQ’s Mqtt5AsyncClient, for integration test purposes.
I am writing tests using JUnit, and have tried moquette but that appears (for now) to only support MQTT v3, not v5.
Does anyone know of an embedded (i.e. can be run through java code directly) MQTT broker which I could use in this scenario?
Implement Laravel soft deletes to preserve data integrity while enabling logical deletion. This powerful feature supports compliance requirements, audit trails,…
A Laravel package for generating Bootstrap 5 forms based on models. The post Quickly Generate Forms based on your Eloquent…
We are excited to share that Pest 4 is now available! Get started with browser testing in Pest using modern…
Useful Laravel links to read/watch for this week of August 21, 2025. Source: Read MoreÂ
A Laravel package for generating Bootstrap 5 forms based on models. The post Quickly Generate Forms based on your Eloquent…
Laravel v12.25.0 is out with a Copy as Markdown button on the error page, allowing you to conveniently share error…
Transform your Laravel applications with real-time broadcasting capabilities. Create dynamic user experiences through instant updates, presence channels, and collaborative features…
APIs (Application Programming Interfaces) have become the lifeblood of digital transformation. From mobile banking apps to enterprise SaaS platforms, APIs power the seamless flow of data between applications, services, and devices. However, with this power comes an equally significant risk: security vulnerabilities. A single exposed API can lead to massive data leaks, unauthorized access, and
The post Postman API Security Testing: A Complete Guide appeared first on Codoid.
Post Content Source: Read More
Sentry has rolled out a new Logs feature, allowing you to capture and aggregate application logs alongside your errors. The…
Optimize Laravel Context management with remember() and rememberHidden() functions. These closure-based methods eliminate verbose conditional patterns while providing efficient request-scoped…
Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command…
This blog shows you how to install and set up the Flow application as part of the Total.js IoT platform,…
Total.js Tables is a no-code tool for designing and managing database tables on top of PostgreSQL. Source: Read More
Most AI pilots stall after early wins, not because of weak models, but fragile architecture. This blog explores how scalable AI design, cloud and edge integration, and proven principles turn experiments into enterprise-ready systems, driving faster deployment, cost efficiency, and reliable performance across business units.
The post From Pilots to Production: Building AI Architectures That Scale first appeared on TestingXperts.
I see that it is standard to initialize and close the driver in Cucumber in Hooks class using @Before and @After hooks. However, what if you use Cucumber with Page Object model? Such design pattern also initializes drivers. For that you use the Base class, which all Page classes extend