How to test webhooks locally (even if your local application runs in a container) Sometimes we need to add endpoints to allow other applications to send us webhooks. Some applications, such as Stripe, provide… Continue reading “How to test webhooks locally (even if your local application runs in a container)”…
Dockerizing Socket.IO using Laradock (with Redis and Nginx) This is a guide on how we implemented a Socket.IO server using Laravel as our backend application and posting our events through Redis. Continue reading “Dockerizing Socket.IO using Laradock (with Redis and Nginx)”…
Implementing mutually exclusive roles on Spatie Laravel-permission with Nova Working on a project that implemented Spatie\Laravel-permission to manage user roles and permissions, we’ve found a situation where users could… Continue reading “Implementing mutually exclusive roles on Spatie Laravel-permission with Nova”…
Customizing Laravel Nova: Adding Our Custom Modules Learn step by step how to add your custom modules to the Laravel Nova administration panel. Continue reading “Customizing Laravel Nova: Adding Our Custom Modules”…
Building Strong Foundations: Leveraging JSON Schema for Comprehensive REST API Documentation and Testing JSON Schema is a very helpful object definition language for implementing well-documented REST APIs. It is useful for documenting and… Continue reading “Building Strong Foundations: Leveraging JSON Schema for Comprehensive REST API Documentation and Testing”…