Let's learn together! 🚀

Join me as I document my journey as a developer and decode the digital world, one line at a time.

Laravel logo Livewire logo Alpine.js logo Tailwind CSS logo Nuxt.js logo

Use Custom Git Repository on your Laravel Project

Laravel

When working on Laravel projects, you may come across a package that fits your needs but requires some modifications. Instead of waiting for the maintainers to merge your changes, you can fork the package and install your customized version. In this guide, we'll go through the steps to install a forked package in your Laravel project.

How to convert a callback function to an async/await function

JavaScript

In JavaScript, async/await is a feature that provides a more concise and readable way to work with asynchronous code. It's built on top of promises and provides a way to write asynchronous code that looks and behaves more like synchronous code.

How to build a Sitemap for your Laravel App

Laravel

Sitemap is basically a blueprint of a website's structure, providing a comprehensive list of its pages, their relationships, and metadata. In this article we're going to take a look at how I used the Spatie Sitemap package to build sitemaps for my blog.