Blog

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

Laravel Company

Laravel check if updateOrCreate performed an update

# Laravel: How to Check if `updateOrCreate` Performed an Update As developers working with Eloquent in Laravel, we frequently deal with scenarios where we need...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel Eloquent LEFT JOIN WHERE NULL

Title: Understanding LEFT JOIN Queries with WHERE NULL Using Eloquent - A Comprehensive Guide In this blog post, we will delve into the intricacies of working...

2026-06-29 Stefan Bogdanescu
Laravel Company

installing laravel --prefer-dist

Title: Understanding Laravel's --prefer-dist Option During Installation Body: Introduction ----------- Laravel is an incredibly popular PHP framework used for...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to resolve: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client?

Title: Resolving SQLSTATE[HY000] [2054]: The Server Requested Authentication Method Unknown to the Client in Laravel Body: ISSUE DESCRIPTION AND CONTEXT You...

2026-06-29 Stefan Bogdanescu
Laravel Company

sudo composer install vs. composer install

Title: Understanding the Difference Between sudo composer install and composer install Body: Composer is an essential tool for managing dependencies of...

2026-06-29 Stefan Bogdanescu
Laravel Company

Undefined property: Illuminate\Pagination\LengthAwarePaginator::$name

Title: Resolving "Undefined property: Illuminate\Pagination\LengthAwarePaginator::$name" Issue in Laravel Applications Body: When working with Laravel...

2026-06-29 Stefan Bogdanescu
Laravel Company

Datepicker and Laravel

Title: Simplifying Datepicker Integration with Laravel Forms Datepickers are a common requirement for web applications where users need to select dates...

2026-06-29 Stefan Bogdanescu
Laravel Company

SQLSTATE[HY000] [2002]php_network_getaddresses: getaddrinfo failed: No such host is known

Title: Solving SQLSTATE[HY000] [2002]php_network_getaddresses: getaddrinfo failed: No such host is known in Laravel Applications Introduction: Error messages...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel 5.6 Tinker Class '...' not found in Psy Shell code on line 1

Title: Understanding Namespaces and Class Filename Conventions in Laravel Tinker Body: Laravel is a popular PHP framework that provides an intuitive way to...

2026-06-29 Stefan Bogdanescu
Laravel Company

Unset/Remove relation object from Laravel Eloquent collection

Title: Unset/Remove Relation Object from Laravel Eloquent Collection: A Comprehensive Guide Introduction: Working with relationships in Laravel is a common...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel Artisan - reload .env variables or restart framework

Title: Laravel Artisan - Handling Runtime .env Variable Changes Efficiently for Your Commands Introduction: Laravel is a powerful PHP framework that allows...

2026-06-29 Stefan Bogdanescu
Laravel Company

Passing a PHP variable to JavaScript in a Blade template

Title: Passing a PHP Variable to JavaScript in Laravel Blade Templates - Comprehensive Guide Introduction: In modern web development, passing data between...

2026-06-29 Stefan Bogdanescu