Blog

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

Laravel Company

Illuminate\Database\QueryException : could not find driver

# Resolving the Dreaded `could not find driver` in Laravel on Shared Hosting As a senior developer, I’ve seen countless scenarios where an application...

2026-06-29 Stefan Bogdanescu
Laravel Company

Maintenance Mode without using Artisan?

# Maintenance Mode Without Using Artisan: The Developer's Approach It’s a common scenario, especially when dealing with restricted hosting environments or...

2026-06-29 Stefan Bogdanescu
Laravel Company

Templating in Laravel

# Mastering Layouts: Templating Effectively in Laravel Migrating from older MVC frameworks, like CodeIgniter with its custom template system, often brings a...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel 5.4 - Validation with Regex

Title: Laravel 5.4 - Validation with Regex Body: In this blog post, we will explore how to create validation rules using regular expressions in Laravel 5.4....

2026-06-29 Stefan Bogdanescu
Laravel Company

laravel how to check if session variable is empty

# Mastering Session Data: How to Check If Session Variables Are Empty in Laravel As developers working with web applications, managing user state across...

2026-06-29 Stefan Bogdanescu
Laravel Company

Call to a member function move() on string

# Resolving the "Call to a member function move() on string" Error During File Uploads in Laravel As a senior developer working with PHP and Laravel, dealing...

2026-06-29 Stefan Bogdanescu
Laravel Company

CORS Issue: No 'Access-Control-Allow-Origin' Header Present on Laravel 10 API Request

# CORS Issue: No 'Access-Control-Allow-Origin' Header Present on Laravel 10 API Request As developers working with modern decoupled architectures—like a...

2026-06-29 Stefan Bogdanescu
Laravel Company

How in laravel-livewire set flash message with validation erros

# How to Handle Validation Errors and Flash Messages in Laravel Livewire As developers building dynamic applications with Laravel and Livewire, we often find...

2026-06-29 Stefan Bogdanescu
Laravel Company

Send file with postman to Laravel API

# Sending Files with Postman to a Laravel API: Solving the "NULL" Upload Problem As a senior developer, I’ve encountered this exact frustration many times:...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel insert not saving created_at, updated_at columns

# Stop the Mystery: Why Laravel Mass Inserts Skip `created_at` and `updated_at` Timestamps As developers working with Eloquent and mass data operations in...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel 5.4 can't run "php artisan preset react" comand

# Why Laravel 5.4 Fails on `php artisan preset react`: A Deep Dive into Artisan Command Evolution As developers working with established frameworks like...

2026-06-29 Stefan Bogdanescu
Laravel Company

Check if token expired in Laravel

# How to Check if a Token Has Expired in Laravel: A Deep Dive into Eloquent Scopes As a senior developer working with token-based authentication systems,...

2026-06-29 Stefan Bogdanescu