Since April 5th, 2023, AWS announced that by default all new buckets will apply two new security best practices. Here’s what changed and how to fix it.
Tag: laravel
🔑 SMS OTP Verification for Laravel
In some occasions you may need to add OTP verification for your logged-in dashboard. Various ways exist for OTP verification (like Laravel Jetstream/Fortify) which will require your end user to have a separate mobile app for this. In my situation, I had the need to send the OTP codes via SMS. To solve this need, […]
Laravel Nova Future Trends
In one of my projects I use Laravel Nova, for a beautifully-designed administration panel. It includes a very easy to use way to generate graphs in various formats such as Trends. One feature that I needed but was missing was generating the graph with future dates. In a project I am working on, we have […]
Split assets using Laravel Mix
There are cases where you’d like to build different JS/CSS assets for your site, like when you are building a landing page and a user-authenticated dashboard. You wouldn’t want to load all the CSS and JS assets on your landing page would you? In this tutorial we will see how to split the generated builds […]
Multitenant Laravel Notifications
Laravel Notifications are an awesome tool that provides built-in support for sending notifications, in dozens of different channels, like Slack, Telegram, SMS, etc. In this tutorial, we will see how we can customise Laravel Notifications core to accommodate a multi-tenant setup in a single database.
💡 Hot Reload with Laravel Sail
While working on Laravel project based on Jetstream I realised Hot Reload wouldn’t work on the default Laravel Sail docker config. I am documenting what needed to be updated to save me time when I need this again.