Blog

Insights, guides, and best practices from the Laravel Company team.

Laravel Company

Multipart/form-data not working on axios put request

# Solving Multipart/form-data Issues with Axios PUT Requests: A Deep Dive for Next.js & Laravel Developers File uploads are a cornerstone of modern web...

2026-06-29 Stefan Bogdanescu
Laravel Company

Saving files locally with Laravel

# Saving Files Locally in Laravel: Solving the 404 URL Mystery As a senior developer working with Laravel, managing file storage—especially when dealing with...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to Remove Duplicate Rows in Laravel

# How to Remove Duplicate Rows in Laravel: A Database Deep Dive As developers working with relational databases through an ORM like Laravel Eloquent, data...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel catch TokenMismatchException

# Mastering CSRF Errors in Laravel: Catching `TokenMismatchException` Gracefully As a senior developer working with the Laravel ecosystem, we frequently...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to skip blank rows in maatwebsite-excel 3.1 for model-way import on Laravel

# How to Skip Blank Rows in maatwebsite-excel for Model Import on Laravel Importing data from external sources like Excel files is a common task in web...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel : Syntax error or access violation: 1055 Error

Title: Combating SQL Errors While Utilizing Eloquent's WhereIn and GroupBy in Laravel Queries Introduction Laravel provides efficient tools such as Eloquent...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel error when sending custom email address using smtp server

# Solving the SSL Handshake Nightmare: Why Your Custom SMTP Email Fails in Laravel As a senior developer working with Laravel applications, configuring...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel 4 Eloquent ORM select where - array as parameter

# Laravel Eloquent: Selecting Records with an Array of Parent IDs ## Is Solution for This in Eloquent ORM? The short answer is an emphatic **yes**. Handling...

2026-06-29 Stefan Bogdanescu
Laravel Company

Change name of Laravel's created_at and updated_at

# Changing Names: Mapping Legacy Timestamps to Laravel's `created_at` and `updated_at` Migrating a legacy application, especially one built on systems like...

2026-06-29 Stefan Bogdanescu
Laravel Company

laravel orderByRaw() on the query builder

# Mastering Complex Ordering with `orderByRaw()` in Laravel As developers working with relational databases like MySQL, we often encounter scenarios where...

2026-06-29 Stefan Bogdanescu
Laravel Company

Saving one to one relation in Laravel

# Mastering One-to-One Relations in Laravel: Why Your Saves Aren't Updating Dealing with Eloquent relationships, especially one-to-one setups, often presents...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel Queue and Jobs - How to re run failed job later on

# Laravel Queue and Jobs: How to Re-run Failed Jobs Later On Thank you for bringing up this very common and critical scenario in any application utilizing...

2026-06-29 Stefan Bogdanescu