Enums in Laravel Explained: A Simple Guide for BeginnersUnderstanding Enums in Laravel An enum (short for enumeration) is a special kind of class that lets you define a group of named constants. These constants are fixed values that don't change, and they’re commonly used to represent a predefined set of ...Jun 11, 2025·6 min read
Mastering JavascriptHello,this is the third task for chapter 2 Question: Chessboard Write a program that creates a string that represents an 8×8 grid, using newline characters to separate lines. At each position of the grid there is either a space or a "#" character. Th...May 23, 2022·1 min read
Mastering JavascriptHello, The second task for chapter 2 FizzBuzz Write a program that uses console.log to print all the numbers from 1 to 100, with two exceptions. For numbers divisible by 3, print "Fizz" instead of the number, and for numbers divisible by 5 (and not 3...May 18, 2022·1 min read
Mastering JavascriptHello, I have been on the journey of mastering javascript, and I came across the book "Eloquent Javascript" by Marijn Haverbeke. And I've decided to share my journey and progress, by showing the task, I completed by the end of each chapter. Chapter ...May 18, 2022·1 min read
How to use EmailJs inEmailJS helps to send emails using client-side technologies only. In simple terms, it gives the access to send connect your contact form, directly to your email, without a server from the frontend. The steps to take are, Visit the Email.js web page,...Feb 28, 2022·2 min read