How to utilize Capsule to use Eloquent ORM outside Laravel

— If you love the Laravel as a framework or more specifically its Eloquent ORM like I do then there’s a great chance that you’d like to use this great ORM in your non-Laravel PHP apps as well. And the good news is it’s rather easier than you might think. Laravel provides a standalone pacakge called Capsule which you can use in your own project. It’s a full database toolkit for PHP, providing an expressive query builder, ActiveRecord style ORM, and schema builder. It currently supports MySQL, Postgres, SQL Server, and SQLite.

Building API endpoints in Magento2 from scratch

Magento is known for its developer-friendly approach for buliding things around its platform. Everything is well-defined and readily available in the framework. This also includes implementing RESTful APIs right within the framework. In this article, I’m going to explain how you can create an API endpoint in Magento 2 and how you can consume or distribute the same.

Using Lazy Collections on memory-hungry operations in Laravel 6

— Laravel team has recently released v6.0 of the framework and with this they have added a bunch of exciting new features. Among which, I’m going to talk about Lazy Collections in this article. In Laravel, Illuminate\Support\Collection class provides a fluent, convenient wrapper for working with arrays of data. In face, all the Eloquent queries are always returned as Collection instances. LazyCollection essentially extends the features of the Collection class. Let’s talk about them in detail.

Built-in password hashing and verification in PHP

— Passwords are an integral part of today’s authentication based web applications. In fact, Passwords have been used since ancient times. Sentries would challenge those wishing to enter an area to supply a password or watchword, and would only allow a person or group to pass if they knew the password. In modern web application passwords are used in combination with usernames to authenticate users. So, basically, we’d need to fields in order to store username and password for each user both of which are supplied by user at the time of signing up to the web application.

The native ad blocker in Chrome you don't know about

— You must have come across websites which have gone overboard in terms of number of advertisement on them. Let’s face it. Ads make user’s experience not so pleasurable and if they are over the top you might want to leave it as soon as possible. Possible solution to mitigate this is to install Adblocker extensions and get rid of ads but what if I tell you there’s an ad blocker built right into Chrome deep inside? Well, it’s not straight forward one but if you want a quick “Ad-blocker”, it can get you covered.