Latest Updates

Documenting code, one commit at a time.

PHP Go 8 posts
×

Enhancements to AI Settings and Post Generation Access Control

Overview

This update focuses on refining access control for AI settings and improving the Post Generator navigation within the application. Key changes include restricting access to AI configuration settings to superadmin users only and reordering the Post Generator in the navigation menu for improved user experience.

AI Settings Access Control

To enhance security and prevent

Read more
PHP MySQL JavaScript

Implementing Dual-Write for User/Tenant Data Separation

Introduction

Our application initially stored user-specific data directly within the Tenant model. As we've grown, the need for a more scalable and maintainable solution became apparent. To address this, we embarked on a project to separate user profiles into a dedicated table within each tenant's schema.

The Challenge

Storing user data directly in the Tenant model created several

Read more
PHP Security

Dependency Updates: Enhancing Platform Security and Stability

Introduction

Regularly updating dependencies is crucial for maintaining the security and stability of our platform. Recent efforts have focused on upgrading key packages to address potential vulnerabilities and improve overall performance.

Key Updates

This update includes the following significant dependency upgrades:

  • nikic/php-parser: Updated from v5.6.2 to v5.7.0.
Read more

Extending Horizon Job Retention for Enhanced Monitoring

Introduction

We've increased the retention period for jobs within Laravel Horizon, our Redis-powered queue monitoring dashboard. This enhancement provides a more comprehensive view of queue activity, aiding in debugging and performance analysis.

The Problem

Previously, Horizon was configured to trim recent, pending, and completed jobs after only 60 minutes.

Read more

Optimizing Auto-Sync Frequency for Enhanced Responsiveness

Introduction

We recently adjusted the frequency of our automated synchronization process to improve system responsiveness and data consistency. This post details the change and the reasoning behind it.

The Change

The auto-sync schedule was updated from running hourly to every minute. This adjustment aims to provide near real-time updates for critical data.

Schedule::command('posts
Read more
CSS PHP JavaScript

Fixing Filament Admin Sidebar Header Positioning

The Issue

The Filament admin panel's sidebar header was not behaving as expected on desktop screens. Specifically, its positioning wasn't sticky, leading to a poor user experience when scrolling through long lists of navigation items.

The Fix

A CSS update was implemented to ensure the sidebar header remains fixed at the top of the screen on desktop viewports.

Read more