Articles

Unlocking New Frontiers in Mobile Development with React Strict DOM (RSD)
In the dynamic landscape of mobile development, innovation is the key to staying ahead. React Strict DOM (RSD), an experimental offering from Meta (formerly Facebook), is poised to revolutionize the way we approach mobile app development. With its web-first API and unification of React and React Native, RSD promises to unlock a new realm of […]

Building Efficient Production-Ready Apps : Best Tech Stacks for Today’s Challenges
These are some excellent technology stacks for developing production-ready applications with a focus on performance, efficiency, and developer experience. Below, I’ve provided a brief overview of each stack and its key components: Stack #1: Laravel Backend Framework: Laravel (PHP) Frontend Framework: Livewire (for interactive components) Database: MySQL CSS Framework: Tailwind CSS Stack #2: Symfony Backend […]

How to install and configure JWT (Json Web Token) in Laravel Applications
JWT installation & Settings Before we get into this JSON Web Token tutorial, what exactly is a JWT?In modern web trends, Popularity of single page applications, mobile applications, and RESTful API services, We are no longer spending much time building markup, instead we are building APIs that our front-end applications consume.Back-end is more about business […]

Alpine.js v3
Alpine.js version 3.0 will be released soon! There is going to be an Alpine Day online event where the creator, Caleb Porzio, will be talking about some new things coming to Alpine as well as pushing the new version live! In this quick post, let us go through some of the new features and how […]

How to install Laravel & using Laravel Valet?
Here in the video for the demonstration using #Laravel 8x in #Tamil.

Alpine.js, a tiny JavaScript framework
Today i’m writing about the new minimal js library Alpine.js, A rugged, minimal framework for composing JavaScript behaviours in the Html markup. Think of it like Tailwind for JavaScript. Alpine.js is a tiny JavaScript framework that makes declarative rendering super easy, without the weight of larger frameworks like Vue or React. If you’re looking for […]

Useful Laravel Snippets
How to check current installed version of Laravel ? Last executed queries in Laravel 5 Getting all tables inside a database using Laravel Injecting data With Blade ********** Named Route Groups // view // view *************** Get table column names as array from Eloquent model ************** Show All Validation Errors in Laravel’s Blade View

Building web with React, Next.js, Tailwind, Vercel
Recently I have updated my personal website blog from wordpress to next.js. Next.js plays as a frontend as wordpress uses as a backend service. The site is built with React, Next.js and Tailwind css, and it’s hosted on Vercel. The site is hosted in vercel. Please visit the following links for more details. http://niyaz.vercel.app

10 Things To Know As A Fullstack Developer
1. Frontend first Mastering client side (frontend) before server side (backend) is a good strategy. You will see your actions getting manifested in real time on the browser. This will keep you motivated to build more. 2. Fundamentals It’s VERY important to know the fundamentals of any framework by heart. If you claim to know […]

How to truncate a foreign key constrained table in mysql?
You cannot TRUNCATE a table that has FK constraints applied on it (TRUNCATE is not the same as DELETE). To work around this, use either of these solutions. Both present risks of damaging the data integrity. Option 1: Remove constraints Perform TRUNCATE Delete manually the rows that now have references to nowhere Create constraints Option […]