Category Archive for "Laravel"

What is Pair Programming?

Two Minds, One Goal: The Power of Pair Programming Pair programming is an agile software development technique in which two developers work together on the same computer to write code. One developer, called the driver, is responsible for typing the

Read More

Laravel 9: a deep dive into the latest major release

This transition is intended to ease the maintenance burden on the community and challenge our development team to ship amazing, powerful new features without introducing breaking changes. Therefore, we have shipped a variety of robust features to Laravel 8 without

Read More

Laravel Forge CLI

Laravel Forge launched their first official command-line tool that gives you a nice set of commands to manage your Forge servers, sites, and more. The first release (v1.0) of the Forge CLI contains around thirty commands, including initiating deployments, viewing

Read More

Find N+1 problems instantly by disabling lazy loading

In the next release of Laravel 8, you can strictly disable lazy loading entirely, resulting in an exception: Preventing lazy loading in development can help you catch N+1 bugs earlier on in the development process. The Laravel ecosystem has various

Read More

What is Application Performance Monitoring (APM)?

Application Performance Monitoring (APM), as the name suggests, is the process of monitoring the performance of the many aspects of your application. When an end-user logs into your application, for even just one web page to load on their device,

Read More

What will be the best Back End development framework for 2021

What should we learn next? If you are a developer, this question should always be in your mind. Every day, new technologies are introduced and improvements are made to existing ones. Since we can’t learn all these technologies, it is

Read More
What's new in php 8

What’s new in PHP 8

PHP 8 is here! PHP 8 is a new major improved version, which means that it will introduce performance improvements and lots of new features such as the JIT compiler, union types, attributes, and more. New features Let’s start with

Read More

Laravel component Media Library

Media Library can associate files with Eloquent models. You can, for instance, associate images with a blog post model. In your Blade view, you can retrieve URLs to the associated images. It can handle multiple collections, work with multiple filesytems,

Read More

Using Sanctum to authenticate a mobile app

Sanctum is Laravel’s lightweight API authentication package. This tutorial will go over using Laravel Sanctum to authenticate a mobile app. The app will be built in Flutter, Google’s cross-platform app development toolkit. We may skip some implementation details of the

Read More

Laravel 8 is just released!

Laravel 8 is now released and includes many new features including Laravel Jetstream, a models directory, model factory classes, migration squashing, rate-limiting improvements, time testing helpers, dynamic blade components, and many more features. Before we jump into the new features,

Read More