Writing

Articles & Notes

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

Laravel

Laravel Form Collective Select Tutorial

The select form is a bit complicated among other forms in Laravel collective. It is because we need…

Mar 20, 2022 2 min read
Laravel

All about Migration Rollbacks

The examples are focused on how to roll back migrations on Laravel. This rolls back the last migrations…

Feb 16, 2022 1 min read
Programming

Show button when hovered on another element using only css

As the title suggests, I wanted to show a button when it hovered over a name. And this…

Feb 15, 2022 1 min read
Laravel

Check if the Route exists in Laravel

I wanted to check if the route I created really exists, cause I couldn’t do the obvious ‘php…

Feb 10, 2022 1 min read
Articles

[Solved] Phpstorm not recognizing PHP file

Let me get right to the solution. Go to Settings Click on Preferences Click on Editor Select File…

Feb 1, 2022 1 min read
Laravel

Using When Condition Inside a query in Laravel

Similar to the previous article I wrote about using the IF condition inside a query (Click Here for…

Jan 29, 2022 1 min read
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