In the fast-paced world of web development, user experience is paramount. Long processing times can lead to frustrated users and decreased engagement. Fortunately, Laravel offers a solution to this challenge […]
Handling Timezones in Laravel Applications
Timezones play a crucial role in web applications, especially when dealing with date and time data. In this tutorial, we’ll explore how to handle timezones effectively in Laravel applications, covering […]
Configuring Supervisor for a Laravel Queue Worker on Ubuntu
Background: In the quest to ensure seamless and efficient background job processing in Laravel, many of us have turned to the trusty php artisan queue:work –daemon command scheduled via a […]
Mastering Background Job Processing in Laravel: A Comprehensive Guide
Introduction In modern web applications, tasks that take a significant amount of time to complete should be processed asynchronously in the background. Laravel’s robust queue system allows you to achieve […]
Understanding and Fixing Auto-Updating Timestamp Columns in Laravel
Introduction Timestamp columns in Laravel can be a powerful tool for tracking the creation and modification of records. However, they can also lead to unexpected behavior if not handled correctly. […]
Testing All Index Views in Laravel: An Efficient Approach
As developers, we all know how important it is to ensure that our applications are thoroughly tested. One area that requires particular attention is the index views, which are commonly […]
Different php version for different folders/sub-domains [shared hosting] [composer] [CLI]
Are you trying to have different php version for different sub domains or folder? Well, I have collected some information to make it work under shared hosting. Here are what […]
Mixing up Browser and API[Feature/Unit] test in Laravel.
In my case, I wanted to test first a request which only was able to execute using api from mobile devices. And once the api is requested, I needed to […]
Laravel – Getting multiple rows in just one row separated by commas
Let’s get initial result to create a scenario to make you understand what we are going to do here. Based on a query below, you will get result of bill […]