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 […]
Author: chrysanthos
How to get the data of a Proxy Object in Vue.js 3
Vue.js 3 uses Proxies, a powerful metaprogramming feature. By using Proxies Vue.js 3 managed to resolve the reactivity-related issues in Vue.js 2. Since Proxies are a relatively new thing, lots of developers are having trouble understanding how Proxies work. One very frequent question is how to access the underlying value of a Proxy in Vue.js […]
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.