Blog

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

Laravel Company

Laravel 7 - Stop Processing Jobs and Clear Queue

Title: Laravel 7 - Stop Processing Jobs and Clear Queue Body: Whether you are using a local setup or a production system on AWS with Laravel Forge, working...

2026-06-29 Stefan Bogdanescu
Laravel Company

Create Models from database in Laravel

Generating Models from Database in Laravel In Laravel, you can create models based on your database tables by utilizing the powerful features provided in this...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to debug Laravel framework?

Title: Effective Debugging Techniques for Laravel Framework Introduction As a newbie PHP programmer exploring the world of frameworks, you might be intrigued...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to set cookies in laravel 5 independently inside controller

Title: Managing Cookies Independently in Laravel 5 Controllers It's quite common for developers working with Laravel 5 to encounter situations where they need...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel whereDoesntHave() - multiple OR conditions

Title: Achieving Multiple OR Conditions with Laravel's whereDoesntHave() Method Body: In Laravel 4.2, you have a model called Product with many-to-many...

2026-06-29 Stefan Bogdanescu
Laravel Company

Blade view not reflecting changes

Title: Troubleshooting Blade View Issues in Laravel Projects Body: In certain instances, you might encounter an issue where your Blade view file doesn't...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to alias the name of a column in Eloquent

Title: Aliasing Column Names in Eloquent Queries for Better Organization Body: In Laravel applications, using Eloquent models makes working with databases more...

2026-06-29 Stefan Bogdanescu
Laravel Company

Where do I place custom fonts in Laravel 5?

Title: Optimizing Custom Font Management in Laravel 5 Applications Introduction: Custom fonts play a crucial role in enhancing the visual appeal of your web...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel 5 CSRF global token hidden field for all forms in a page

Title: Streamlining Laravel 5 CSRF Protection: A Comprehensive Guide to Global Token Hidden Field for All Forms on a Page Body: Laravel is an excellent PHP...

2026-06-29 Stefan Bogdanescu
Laravel Company

SQLSTATE[HY000] [2002] Connection refused within Laravel homestead

Title: Troubleshooting SQLSTATE[HY000] [2002] Connection refused errors in Laravel Homestead Introduction: Using Laravel with Homestead is an efficient way to...

2026-06-29 Stefan Bogdanescu
Laravel Company

How can I echo the version of the current Laravel version in php using the view?

Title: Easily Display Laravel Version in Your PHP Views Body: As a Laravel developer, you may wonder how to access the Laravel version number within your...

2026-06-29 Stefan Bogdanescu
Laravel Company

The DELETE method is not supported for this route. Supported methods: GET, HEAD, POST

Title: Resolving "The DELETE method is not supported for this route. Supported methods: GET, HEAD, POST" Issues in Laravel Applications Body: When creating web...

2026-06-29 Stefan Bogdanescu