Blog
Insights, guides, and best practices from the Laravel Company team.
Lumen and MongoDB?
# Lumen and MongoDB: Bridging Relational Concepts with NoSQL Data The question, "Is it somehow possible to include the MongoDB connection settings into a Lumen...
Laravel, valdiation alpha_dash prevent dashes
# Laravel Validation Deep Dive: Preventing Dashes and Enforcing Alphanumeric Rules As developers building robust applications with Laravel, validation is a...
How to deploy separated backend and frontend on same server
# How to Deploy Separated Backend and Frontend on the Same Server: The Reverse Proxy Masterclass As developers, we often build applications using modern...
AES 256 CBC encryption in Laravel and Decryption in android
# AES-256 CBC Encryption in Laravel and Decryption in Android: Debugging Cross-Platform Cryptography As a senior developer, I frequently encounter challenges...
How to destroy livewire component on click?
# How to Destroy a Livewire Component on Click: Mastering Dynamic Deletions Building dynamic user interfaces with Livewire is incredibly powerful. You can...
Special chars in Laravel .env file
# Decoding Secrets: Handling Special Characters in Your Laravel `.env` File As a senior developer working with frameworks like Laravel, we often deal with...
Explain Eloquent morphMany parameters
# Mastering Polymorphism in Eloquent: A Deep Dive into `morphMany` Welcome to the world of Laravel! As you start building dynamic applications with Eloquent,...
How to use multiple databases in Laravel
Title: Efficiently Utilizing Multiple Databases in Laravel Applications Introduction There are various use cases where a single database is insufficient to...
elastic search failed to parse date field with format [strict_date_optional_time||epoch_millis]
Title: Understanding and Resolving Date Parsing Issues When Updating Models in Laravel Introduction In Laravel applications, when an object model is updated,...
Unique validation with 2 columns - Laravel 8.x
# Unique Validation with Two Columns in Laravel 8.x: Mastering Multi-Column Constraints As developers working with relational databases in Laravel, enforcing...
what is the difference between 'extends Authenticatable' vs 'extends Model' in Laravel?
# Understanding Eloquent Inheritance: The Difference Between `Model` and `Authenticatable` in Laravel As a senior developer working with the Laravel ecosystem,...
Laravel eloquent add custom query elements
# Laravel Eloquent: Mastering Custom Query Elements for Lean Data Retrieval As a senior developer working with Laravel, we constantly strive for code that is...