Blog

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

Laravel Company

Laravel filter array based on element value

Title: Laravel Filter Array Based on Element Value Using Built-In Tools Introduction Laravel provides a vast array of tools for working with arrays, one of...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel how to test if a checkbox is checked in a controller

Title: Testing Checkbox Inputs in Laravel Controllers: A Comprehensive Guide Introduction: In web applications using Laravel, checkboxes are often used to...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to install all required PHP extensions for Laravel?

Title: A Comprehensive Guide to Installing All Required PHP Extensions for Laravel on Ubuntu 16.04 (with Terminal and GUI Options) Introduction: Ensuring that...

2026-06-29 Stefan Bogdanescu
Laravel Company

change database connection in laravel model

Title: Easily Change Database Connection in Laravel Model for External Database Access Body: Laravel is known for its extensive database management...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel 5.1 Unknown database type enum requested

Title: Troubleshooting Laravel 5.1 Unknown Database Type Error Introduction: Encountering errors while running your application is always frustrating. These...

2026-06-29 Stefan Bogdanescu
Laravel Company

How addSelect() Builder method works in Laravel

Title: Understanding addSelect() Method for Eloquent Queries in Laravel Body: The addSelect() method in Laravel is an essential tool for developers to...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to set session timeout in Laravel?

Title: Effectively Adjusting Session Timeouts in Laravel Applications Body: Setting session timeouts is a crucial aspect of any web application's security...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel Sail rebuild default database

When working with Laravel Sail on a MySQL container for your database, you might encounter issues when running migrations or performing other database-related...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to echo a default value if value not set blade

Title: Handling Null Values and Default Display in Blade Templates - A Comprehensive Guide Body: Displaying default values or substituting them with...

2026-06-29 Stefan Bogdanescu
Laravel Company

Can you create a new Model instance without saving it to the database

Title: Creating New Model Instances Without Saving Them to the Database in Laravel Body: Creating new model instances without saving them directly to the...

2026-06-29 Stefan Bogdanescu
Laravel Company

Script php artisan clear-compiled handling the pre-update-cmd event returned with an error (Laravel 4.1 upgrade)

Title: Tackling Errors During Laravel 4.1 Upgrade: Understanding php artisan clear-compiled and the pre-update-cmd Event Introduction: In the process of...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to sort an assocoative array in php Laravel

Title: Efficiently Sort Associative Arrays by Count in PHP Laravel Body: Sorting an array based on count is a common task in development, especially when...

2026-06-29 Stefan Bogdanescu