Top 5 PHP Frameworks for web development in 2018
PHP (Hypertext Preprocessor) is one of the oldest programming languages in programming. According to W3Techs, 83.4% of all websites whose server-side programming language uses...
Repository Pattern in Laravel 5
Design patterns is a reusable solution to a commonly occurring problem. It can also be considered as a template for how to solve a...
New Features In PHP 7 – Explained
PHP is the most commonly used programming language. PHP 7 is the latest version which is considered to be the revolutionary release. After the...
How to use Queue in Laravel 5
I have been working with queue in laravel 5 lately and I think it's good to write an article about it. Queue as the...
How to build a REST API using API resources in Laravel 5
API (Application Programming Interface) is also known as Web Services. A developer must have the knowledge of API to be a good programmer. When...
Understanding Interface in PHP
An interface and class are similar but interface cannot contain code inside it. An interface can define method names and arguments, but without the...
Prevent duplicate form submission on refresh in PHP
In this article, I will teach you how to prevent duplicate form submission on refresh. I have found many programmers have problem of multiple...
Practical Implementation of Events in Laravel
Laravel is a very powerful framework. It provides many features including Events. Event Listener and Handler is a powerful tool in programming. Particularly, an...
Introduction to VueJs
So you want to learn VueJs? Great! In this article, we will cover the basic introduction of VueJs. So, what is Vue? Vue is...
Why is Vue so popular?
Vue is a progressive framework for building user interfaces. Vue is basically a frontend framework focused on View layer of MVC design pattern. Integration...