Latest Updates

Documenting code, one commit at a time.

Enforcing Strict Type Checking in PHP Configuration

Introduction

In our ongoing efforts to improve code quality and maintainability within our PHP projects, we have taken the step of enforcing strict type checking in configuration files. This was recently implemented in the resend.php configuration file, a critical aspect of our application.

The Challenge

PHP, being a loosely typed language, allows type juggling, which can lead to

Read more

Enhancing Badge Management with Filament

Introduction

The badge management system has been overhauled to provide a more intuitive and user-friendly experience. This update introduces the ability to manually assign badges to users, complete with visibility settings and date tracking.

Development

The UsersRelationManager class was created to handle user-badge relationships. This class extends Filament's RelationManager and

Read more

Enhancing Platform Security and Accessibility

Introduction

Our platform's latest updates focus on enhancing security and accessibility. This is achieved through a series of critical fixes and improvements, ensuring a more robust and user-friendly experience.

Key Fixes and Improvements

  • WCAG Violations: Removed focus ring override to comply with accessibility standards.
  • reCAPTCHA Configuration: Fixed site key references for
Read more

Enhancing LinkedIn Publishing with Error Handling and Internationalization

Introduction

Our LinkedIn publishing feature required enhancements to improve user experience and adherence to project standards. This post details the implementation of error handling for post scheduling and internationalization of new error messages.

The Challenge

  • Unique constraint violations when scheduling posts for the same day needed proper handling
  • Error messages required
Read more

Enhancing Laravel Application Standards with Updated Guidelines and Dependencies

Introduction

Our Laravel application required improvements in documentation, development workflows, and standardization. The existing setup lacked clarity and efficiency, making it challenging to maintain and scale.

The Challenge

The primary issues with our current setup were:

  • Insufficient documentation for Laravel Boost, Tailwind CSS, PHPUnit, and Filament
  • Inadequate integration with
Read more

Enhancing URL Handling with Tenant Domain Extraction

Introduction

Our application required a more efficient and accurate method for extracting tenant domains to handle URL redirection. The previous implementation had limitations in handling both subdomain-only and full domain formats.

The Challenge

The legacy system had issues with:

  • Incorrect subdomain extraction
  • Inconsistent URL construction
  • Potential errors in redirecting users to
Read more

Enhancing User Experience with Dark Mode in Admin Panel

Introduction

Our application's Admin Panel has undergone a significant improvement with the introduction of dark mode. The new feature enhances the user interface experience for users who prefer a dark theme, aligning with project standards for UI customization and improving accessibility.

Development

To achieve this, we updated the AdminPanelProvider to enable dark mode by setting the

Read more

Enhancing GitHub Service with Carbon and Notifications

Introduction

Our team has been working on improving the GitHub service in our application. One of the key areas of focus was enhancing the date handling and introducing a notifications system.

The Challenge

The existing GitHub service had limitations in terms of date management and lacked a notifications system. This made it difficult to keep track of recent activities and notify users

Read more
Laravel PHP

Implementación de un Logger Multi-Tenant con Streams Divididos en Laravel

Introducción

El desarrollo de aplicaciones multi-tenant ha ganado popularidad en los últimos años, ya que permite a las empresas ofrecer servicios personalizados a diferentes clientes mientras comparten recursos comunes. Uno de los desafíos en este tipo de desarrollo es la implementación de un sistema de logging efectivo que pueda manejar y separar los registros de cada tenant de manera

Read more