Monday, March 25, 2024
Home Featured

Featured

Featured posts

api-documentation-with-swagger

Laravel API documentation with Swagger

Today, we will learn about creating beautiful API documentation with Swagger in Laravel. API documentation is very important when working in a team. It...
Coding Standards

Coding Standards and Best Practices

Most of us assume that coding is the most important part of programming. As we develop more and more systems, mostly large systems, then...

Test Driven Development in PHP

Test Driven Development (TDD) is a software development approach where tests are written first and then code passing the test is written. In other...

Integrate Google PageSpeed Insights API

Do you know, Google provides a free PageSpeed Insights API to analyze websites? It gives free access to performance monitoring of web pages and...
xdebug xampp

Configure XDebug, Xampp and VSCode in Windows

Xdebug is an extension for PHP to assist with debugging and development. Xdebug makes development easier by allowing the developer to debug his code...

Implement Google Style “Did you mean?” Feature in PHP

In this article, we will add our own "Did you mean" feature in PHP. For this, we will implement Smith-Waterman Gotoh Algorithm. We will...
wordpress template hierarchy

Understanding WordPress Template Hierarchy

WordPress is a simple, yet powerful Content Management System(CMS) build with PHP. A CMS is software that helps users create, manage, and modify content...
search in multiple table

Search in Multiple Model using laravel-searchable

Spatie team recently released a new open source package called laravel-searchable . This package simplifies the search between multiple models. In this article,...
Create custom helper functions in Laravel 5

Create Custom Helper Functions in Laravel

Laravel Helper is a simple PHP global function that you can use to save your time in writing some repetitive codes. Laravel provides more...
laravel helper functions

7 laravel helper functions to make your life easier

Laravel provides a lot of global helper functions which are also used by the framework itself. These helpers functions can be used by us...