Published incode16How to handle business days in PHPWhen developing a commerce-related application, it’s sometimes necessary to determine whether a point of sale is open or closed on a given…Apr 17, 2024Apr 17, 2024
Published incode16Efficient searching through PDFs with MySQL and LaravelSearch functionality is often crucial in a modern web application. When a website provides documents with extensive text, such as PDF…Jul 6, 2023Jul 6, 2023
Published incode16How to make sure ray() won’t break your Laravel application with Github ActionScan your Laravel application and detect remaining Spatie’s ray calls in your CI workflow to prevent triggering errors in production.Mar 31, 2023Mar 31, 2023
Explore and polish your Laravel Emails with MailbookStop forgetting about old email templates that sleep in your code base and start inspecting all of them including notificationsDec 29, 2022Dec 29, 2022
Published incode16Validating critical email address in LaravelLearn how to validate email address from your customers and make sure you can contact them with confidence with Laravel’s power featureMar 17, 20221Mar 17, 20221
Published incode16How to use the new PHP enum in LaravelPHP 8.1 introduced long awaited support for built-in Enums. There is no more need for custom solutions as Since 8.69 Laravel has your back.Jan 12, 2022Jan 12, 2022
Published incode16Automatically delete read database notifications in LaravelWhen using Laravel, if you need to notify your users you can benefit from its built-in notification system. Laravel provides support for…Jan 3, 20221Jan 3, 20221
How to get notified when Laravel Horizon stops runningLearn how to setup a scheduled task to check periodically for Laravel Horizon’s status and notify your team as soon as it doesn’t workNov 11, 2021Nov 11, 2021
Published incode16How to test Laravel Horizon notification setup with slackIn Laravel Horizon you can setup a notification system for being alerted when there is a too long wait time on your queues (and check if…Nov 8, 2021Nov 8, 2021
Fake beautiful images in LaravelIf you seed your local database with model factories, you probably use the fresh faker library (as the original faker library has been…Sep 10, 2021Sep 10, 2021
Published incode16Cheap on-demand optimized images with Laravel and AWSSetting up your own image transform service on AWS to serve properly sized and optimized assets with LaravelMay 1, 2021May 1, 2021
How http cache on static assets works out of the boxQuick look at how nginx and modern browsers reduce the network traffic and visitor’s loading time by caching static assets by default.Dec 23, 2020Dec 23, 2020
Published incode16How to keep PHP updated with last patch version on UbuntuAs a webdev, sysadmin is hard. So here is my recipe to make unattended-upgrades automatically upgrade php with ondrej PPA on ubuntuApr 24, 20201Apr 24, 20201
Published incode16How to make up-selling recommendations based on cart using RedisTutorial on how to make recommendations on cart’s summary with popular items based on past orders with redis instead of classic SQLMar 29, 20201Mar 29, 20201
Published incode16Handling changes on belongsToMany relations with Laravel Scout ExtendedKeeping algolia records in sync when using some belongsToMany relationships with pivot tables can get a bit tricky sometimes.Feb 26, 2020Feb 26, 2020
Published incode16Handling context when logging error to sentry with laravelAs define in PSR-3, laravel lets you add context data on all logging functions (since version 5). So logging manually an error with some…Dec 3, 20191Dec 3, 20191
Published incode16Monitor scheduled tasks in laravelWhen scheduling tasks, like database backups, silently fails are the worst. Being aware of failure of thosetask is critical. Hopefully…Jun 3, 20191Jun 3, 20191
Published incode16Using laravel’s logging channels with sentryLogging is an important part of modern applications, as it provides a great and easy way identify points of failure and unwanted…Mar 13, 2019Mar 13, 2019
Published incode16Check for password equality with a custom validation rule in laravelWhen letting a user change his password or deleting his account, you might ask him to give his old password (for security reason). Laravel…Feb 28, 20191Feb 28, 20191