Writing

Articles & Notes

ICT management, web development, training insights, and lessons learned along the way.

Laravel

Using IF Condition Inside a query in Laravel

The task for me today was to filter the products as per their status i.e if they are…

Jan 28, 2022 1 min read
Laravel

Check if the checkbox is checked or not.

As per my previos post, what I did was get all the categories, now I wanted to change…

Jan 25, 2022 2 min read
Laravel

How to compare data in a relationship table with the main table without using more than one loop?

I had this problem where I had to get all the names from one table and get relation…

Jan 24, 2022 2 min read
Laravel

Check if the data is JSON encoded or not.

Previously I had gone through the function to create a slug from the given string. Today, I came…

Jan 18, 2022 2 min read
Laravel

How to add a column to an already existing table in Laravel using Migrations

First, you need to create the migration. While creating the migration file we need to make sure the…

Jan 17, 2022 2 min read
php
Laravel

A function to create slug from the given data in Laravel

Today, I needed to turn my title of the gallery I was making into url slug. So I…

Jan 12, 2022 1 min read
Articles

Checkboxes and the logic behind updating them

My task for the day was to build checkboxes of all the categories available for the posts. One…

Jan 10, 2022 3 min read
Laravel

Silly mistakes you can make while uploading images or files in Laravel

There are many ways to upload files and images in Laravel. One of them is uploading the images/files…

Jan 8, 2022 2 min read
GIT

Best GIT practice when you are just starting up.

This article is for beginners who have just started using GIT. Today, I have come up with the…

Jan 8, 2022 2 min read